{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/3Xi2AslpcDRhfyCVPmx3/d0Oobr5BHnVqZJQyMdGn/storage.js", "ssg:https://framerusercontent.com/modules/m2nL4qHNbqX9QCxsHsGL/aEuoU9xXdHzXrnVcCkrq/cache.js", "ssg:https://framerusercontent.com/modules/VTUDdizacRHpwbkOamr7/AykinQJbgwl92LvMGZwu/constants.js", "ssg:https://framerusercontent.com/modules/D4TWeLfcxT6Tysr2BlYg/iZjmqdxVx1EOiM3k1FaW/useOnNavigationTargetChange.js", "ssg:https://framerusercontent.com/modules/ExNgrA7EJTKUPpH6vIlN/eiOrSJ2Ab5M9jPCvVwUz/useConstant.js", "ssg:https://framerusercontent.com/modules/3mKFSGQqKHV82uOV1eBc/5fbRLvOpxZC0JOXugvwm/isMotionValue.js", "ssg:https://framerusercontent.com/modules/eMBrwoqQK7h6mEeGQUH8/GuplvPJVjmxpk9zqOTcb/isBrowser.js", "ssg:https://framerusercontent.com/modules/v9AWX2URmiYsHf7GbctE/XxKAZ9KlhWqf5x1JMyyF/useOnChange.js", "ssg:https://framerusercontent.com/modules/kNDwabfjDEb3vUxkQlZS/fSIr3AOAYbGlfSPgXpYu/useAutoMotionValue.js", "ssg:https://framerusercontent.com/modules/afBE9Yx1W6bY5q32qPxe/m3q7puE2tbo1S2C0s0CT/useRenderTarget.js", "ssg:https://framerusercontent.com/modules/5SM58HxZHxjjv7aLMOgQ/WXz9i6mVki0bBCrKdqB3/propUtils.js", "ssg:https://framerusercontent.com/modules/aokp9DDPTWaRLrvhFlr7/TOPzYi8C28I7KdesjP2s/Video.js", "ssg:https://framerusercontent.com/modules/3mKFSGQqKHV82uOV1eBc/TbXI1XaZFNevVKcgIt7G/isMotionValue.js", "ssg:https://framer.com/m/framer/useAutoMotionValue.js@^0.3.0", "ssg:https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/QaqrlAraQyqzLNiThK8G/VideoNew.js", "ssg:https://framer.com/m/framer/icon-nullstate.js@0.7.0", "ssg:https://framer.com/m/phosphor-icons/House.js@0.0.37", "ssg:https://framerusercontent.com/modules/Ma20hU0GGRxLxZphbywl/BwKdJRyuRNWL7zr4njQR/utils.js", "ssg:https://framerusercontent.com/modules/tYScH7LTqUtz5KUaUAYP/PHaFTtd03PsDa8045nJF/Phosphor.js", "ssg:https://framerusercontent.com/modules/GFir7xY7PdgUQIcujyq2/H920XSJwTxIlBfcSKvGB/Alm9w2AhY.js", "ssg:https://framerusercontent.com/modules/djrbkFZfohzr8Zw2Vycs/LNxkeqWsNyEwbWEwDMtu/TTnvgKCS3.js", "ssg:https://framerusercontent.com/modules/5m2GnGBto4tiK20oayiE/0COVBbM1SfjdRHaFNBGG/augiA20Il.js"],
  "sourcesContent": ["export function Storage(name) {\n  this.ready = new Promise((resolve, reject) => {\n    var request = window.indexedDB.open(location.origin);\n    request.onupgradeneeded = e => {\n      this.db = e.target[\"result\"];\n      this.db.createObjectStore(\"store\");\n    };\n    request.onsuccess = e => {\n      this.db = e.target[\"result\"];\n      resolve();\n    };\n    request.onerror = e => {\n      this.db = e.target[\"result\"];\n      reject(e);\n    };\n  });\n}\nStorage.prototype.get = function (key) {\n  return this.ready.then(() => {\n    return new Promise((resolve, reject) => {\n      var request = this.getStore().get(key);\n      request.onsuccess = e => resolve(e.target.result);\n      request.onerror = reject;\n    });\n  });\n};\nStorage.prototype.getStore = function () {\n  return this.db.transaction([\"store\"], \"readwrite\").objectStore(\"store\");\n};\nStorage.prototype.set = function (key, value) {\n  return this.ready.then(() => {\n    return new Promise((resolve, reject) => {\n      var request = this.getStore().put(value, key);\n      request.onsuccess = resolve;\n      request.onerror = reject;\n    });\n  });\n};\nStorage.prototype.delete = function (key, value) {\n  window.indexedDB.deleteDatabase(location.origin);\n};\nexport const __FramerMetadata__ = {\n  \"exports\": {\n    \"Storage\": {\n      \"type\": \"function\"\n    }\n  }\n};", "// @ts-ignore\nimport { Storage } from \"https://framerusercontent.com/modules/3Xi2AslpcDRhfyCVPmx3/d0Oobr5BHnVqZJQyMdGn/storage.js\";\nexport const hashCode = s => s.split(\"\").reduce((a, b) => {\n  a = (a << 5) - a + b.charCodeAt(0);\n  return a & a;\n}, 0);\nexport function corsProxy(url) {\n  return `https://cors-anywhere.herokuapp.com/${url}`;\n}\nexport async function cachedResponse(url, cache = new Storage(\"cache\")) {\n  const cacheKey = url;\n  const data = await cache.get(cacheKey);\n  if (data) {\n    return data;\n  } else {\n    var req = new XMLHttpRequest();\n    req.open(\"GET\", url, true);\n    req.responseType = \"blob\";\n    return new Promise((resolve, reject) => {\n      req.onload = async function () {\n        if (this.status === 200) {\n          await cache.set(url, this.response);\n          resolve(this.response);\n        } else {\n          reject(new Error(`Response status ${this.status} ${this.statusText}`));\n        }\n      };\n      req.onerror = function (error) {\n        reject(error);\n      };\n      req.send();\n    });\n  }\n}\nexport async function checkForCachedData(url, cache = new Storage(\"cache\")) {\n  const cacheKey = url;\n  const data = await cache.get(cacheKey);\n  if (data) {\n    return data;\n  } else {\n    return null;\n  }\n}\nexport const __FramerMetadata__ = {\n  \"exports\": {\n    \"hashCode\": {\n      \"type\": \"variable\"\n    },\n    \"checkForCachedData\": {\n      \"type\": \"function\"\n    },\n    \"corsProxy\": {\n      \"type\": \"function\"\n    },\n    \"cachedResponse\": {\n      \"type\": \"function\"\n    }\n  }\n};", "import { ControlType } from \"framer\";\nexport const fontStack = `\"Inter\", system-ui, -apple-system, BlinkMacSystemFont, \"Segoe UI\", Roboto, Helvetica, Arial, sans-serif, \"Apple Color Emoji\", \"Segoe UI Emoji\", \"Segoe UI Symbol\"`;\nexport const containerStyles = {\n  position: \"relative\",\n  width: \"100%\",\n  height: \"100%\",\n  display: \"flex\",\n  justifyContent: \"center\",\n  alignItems: \"center\"\n};\nexport const emptyStateStyle = {\n  ...containerStyles,\n  borderRadius: 6,\n  background: \"rgba(136, 85, 255, 0.3)\",\n  color: \"#85F\",\n  border: \"1px dashed #85F\",\n  flexDirection: \"column\"\n};\nexport const defaultEvents = {\n  onClick: {\n    type: ControlType.EventHandler\n  },\n  onMouseEnter: {\n    type: ControlType.EventHandler\n  },\n  onMouseLeave: {\n    type: ControlType.EventHandler\n  }\n};\nexport const fontSizeOptions = {\n  type: ControlType.Number,\n  title: \"Font Size\",\n  min: 2,\n  max: 200,\n  step: 1,\n  displayStepper: true\n};\nexport const fontControls = {\n  font: {\n    type: ControlType.Boolean,\n    title: \"Font\",\n    defaultValue: false,\n    disabledTitle: \"Default\",\n    enabledTitle: \"Custom\"\n  },\n  fontFamily: {\n    type: ControlType.String,\n    title: \"Family\",\n    placeholder: \"Inter\",\n    hidden: ({\n      font\n    }) => !font\n  },\n  fontWeight: {\n    type: ControlType.Enum,\n    title: \"Weight\",\n    options: [100, 200, 300, 400, 500, 600, 700, 800, 900],\n    optionTitles: [\"Thin\", \"Extra-light\", \"Light\", \"Regular\", \"Medium\", \"Semi-bold\", \"Bold\", \"Extra-bold\", \"Black\"],\n    hidden: ({\n      font\n    }) => !font\n  }\n};\n// @TODO check if we're missing anything here \u2014 there doesn't seem to be a reliable browser API for this\nexport const localeOptions = {\n  af: \"Afrikaans\",\n  sq: \"Albanian\",\n  an: \"Aragonese\",\n  ar: \"Arabic (Standard)\",\n  \"ar-dz\": \"Arabic (Algeria)\",\n  \"ar-bh\": \"Arabic (Bahrain)\",\n  \"ar-eg\": \"Arabic (Egypt)\",\n  \"ar-iq\": \"Arabic (Iraq)\",\n  \"ar-jo\": \"Arabic (Jordan)\",\n  \"ar-kw\": \"Arabic (Kuwait)\",\n  \"ar-lb\": \"Arabic (Lebanon)\",\n  \"ar-ly\": \"Arabic (Libya)\",\n  \"ar-ma\": \"Arabic (Morocco)\",\n  \"ar-om\": \"Arabic (Oman)\",\n  \"ar-qa\": \"Arabic (Qatar)\",\n  \"ar-sa\": \"Arabic (Saudi Arabia)\",\n  \"ar-sy\": \"Arabic (Syria)\",\n  \"ar-tn\": \"Arabic (Tunisia)\",\n  \"ar-ae\": \"Arabic (U.A.E.)\",\n  \"ar-ye\": \"Arabic (Yemen)\",\n  hy: \"Armenian\",\n  as: \"Assamese\",\n  ast: \"Asturian\",\n  az: \"Azerbaijani\",\n  eu: \"Basque\",\n  bg: \"Bulgarian\",\n  be: \"Belarusian\",\n  bn: \"Bengali\",\n  bs: \"Bosnian\",\n  br: \"Breton\",\n  my: \"Burmese\",\n  ca: \"Catalan\",\n  ch: \"Chamorro\",\n  ce: \"Chechen\",\n  zh: \"Chinese\",\n  \"zh-hk\": \"Chinese (Hong Kong)\",\n  \"zh-cn\": \"Chinese (PRC)\",\n  \"zh-sg\": \"Chinese (Singapore)\",\n  \"zh-tw\": \"Chinese (Taiwan)\",\n  cv: \"Chuvash\",\n  co: \"Corsican\",\n  cr: \"Cree\",\n  hr: \"Croatian\",\n  cs: \"Czech\",\n  da: \"Danish\",\n  nl: \"Dutch (Standard)\",\n  \"nl-be\": \"Dutch (Belgian)\",\n  en: \"English\",\n  \"en-au\": \"English (Australia)\",\n  \"en-bz\": \"English (Belize)\",\n  \"en-ca\": \"English (Canada)\",\n  \"en-ie\": \"English (Ireland)\",\n  \"en-jm\": \"English (Jamaica)\",\n  \"en-nz\": \"English (New Zealand)\",\n  \"en-ph\": \"English (Philippines)\",\n  \"en-za\": \"English (South Africa)\",\n  \"en-tt\": \"English (Trinidad & Tobago)\",\n  \"en-gb\": \"English (United Kingdom)\",\n  \"en-us\": \"English (United States)\",\n  \"en-zw\": \"English (Zimbabwe)\",\n  eo: \"Esperanto\",\n  et: \"Estonian\",\n  fo: \"Faeroese\",\n  fa: \"Farsi\",\n  fj: \"Fijian\",\n  fi: \"Finnish\",\n  fr: \"French (Standard)\",\n  \"fr-be\": \"French (Belgium)\",\n  \"fr-ca\": \"French (Canada)\",\n  \"fr-fr\": \"French (France)\",\n  \"fr-lu\": \"French (Luxembourg)\",\n  \"fr-mc\": \"French (Monaco)\",\n  \"fr-ch\": \"French (Switzerland)\",\n  fy: \"Frisian\",\n  fur: \"Friulian\",\n  gd: \"Gaelic (Scots)\",\n  \"gd-ie\": \"Gaelic (Irish)\",\n  gl: \"Galacian\",\n  ka: \"Georgian\",\n  de: \"German (Standard)\",\n  \"de-at\": \"German (Austria)\",\n  \"de-de\": \"German (Germany)\",\n  \"de-li\": \"German (Liechtenstein)\",\n  \"de-lu\": \"German (Luxembourg)\",\n  \"de-ch\": \"German (Switzerland)\",\n  el: \"Greek\",\n  gu: \"Gujurati\",\n  ht: \"Haitian\",\n  he: \"Hebrew\",\n  hi: \"Hindi\",\n  hu: \"Hungarian\",\n  is: \"Icelandic\",\n  id: \"Indonesian\",\n  iu: \"Inuktitut\",\n  ga: \"Irish\",\n  it: \"Italian (Standard)\",\n  \"it-ch\": \"Italian (Switzerland)\",\n  ja: \"Japanese\",\n  kn: \"Kannada\",\n  ks: \"Kashmiri\",\n  kk: \"Kazakh\",\n  km: \"Khmer\",\n  ky: \"Kirghiz\",\n  tlh: \"Klingon\",\n  ko: \"Korean\",\n  \"ko-kp\": \"Korean (North Korea)\",\n  \"ko-kr\": \"Korean (South Korea)\",\n  la: \"Latin\",\n  lv: \"Latvian\",\n  lt: \"Lithuanian\",\n  lb: \"Luxembourgish\",\n  mk: \"FYRO Macedonian\",\n  ms: \"Malay\",\n  ml: \"Malayalam\",\n  mt: \"Maltese\",\n  mi: \"Maori\",\n  mr: \"Marathi\",\n  mo: \"Moldavian\",\n  nv: \"Navajo\",\n  ng: \"Ndonga\",\n  ne: \"Nepali\",\n  no: \"Norwegian\",\n  nb: \"Norwegian (Bokmal)\",\n  nn: \"Norwegian (Nynorsk)\",\n  oc: \"Occitan\",\n  or: \"Oriya\",\n  om: \"Oromo\",\n  \"fa-ir\": \"Persian/Iran\",\n  pl: \"Polish\",\n  pt: \"Portuguese\",\n  \"pt-br\": \"Portuguese (Brazil)\",\n  pa: \"Punjabi\",\n  \"pa-in\": \"Punjabi (India)\",\n  \"pa-pk\": \"Punjabi (Pakistan)\",\n  qu: \"Quechua\",\n  rm: \"Rhaeto-Romanic\",\n  ro: \"Romanian\",\n  \"ro-mo\": \"Romanian (Moldavia)\",\n  ru: \"Russian\",\n  \"ru-mo\": \"Russian (Moldavia)\",\n  sz: \"Sami (Lappish)\",\n  sg: \"Sango\",\n  sa: \"Sanskrit\",\n  sc: \"Sardinian\",\n  sd: \"Sindhi\",\n  si: \"Singhalese\",\n  sr: \"Serbian\",\n  sk: \"Slovak\",\n  sl: \"Slovenian\",\n  so: \"Somani\",\n  sb: \"Sorbian\",\n  es: \"Spanish\",\n  \"es-ar\": \"Spanish (Argentina)\",\n  \"es-bo\": \"Spanish (Bolivia)\",\n  \"es-cl\": \"Spanish (Chile)\",\n  \"es-co\": \"Spanish (Colombia)\",\n  \"es-cr\": \"Spanish (Costa Rica)\",\n  \"es-do\": \"Spanish (Dominican Republic)\",\n  \"es-ec\": \"Spanish (Ecuador)\",\n  \"es-sv\": \"Spanish (El Salvador)\",\n  \"es-gt\": \"Spanish (Guatemala)\",\n  \"es-hn\": \"Spanish (Honduras)\",\n  \"es-mx\": \"Spanish (Mexico)\",\n  \"es-ni\": \"Spanish (Nicaragua)\",\n  \"es-pa\": \"Spanish (Panama)\",\n  \"es-py\": \"Spanish (Paraguay)\",\n  \"es-pe\": \"Spanish (Peru)\",\n  \"es-pr\": \"Spanish (Puerto Rico)\",\n  \"es-es\": \"Spanish (Spain)\",\n  \"es-uy\": \"Spanish (Uruguay)\",\n  \"es-ve\": \"Spanish (Venezuela)\",\n  sx: \"Sutu\",\n  sw: \"Swahili\",\n  sv: \"Swedish\",\n  \"sv-fi\": \"Swedish (Finland)\",\n  \"sv-sv\": \"Swedish (Sweden)\",\n  ta: \"Tamil\",\n  tt: \"Tatar\",\n  te: \"Teluga\",\n  th: \"Thai\",\n  tig: \"Tigre\",\n  ts: \"Tsonga\",\n  tn: \"Tswana\",\n  tr: \"Turkish\",\n  tk: \"Turkmen\",\n  uk: \"Ukrainian\",\n  hsb: \"Upper Sorbian\",\n  ur: \"Urdu\",\n  ve: \"Venda\",\n  vi: \"Vietnamese\",\n  vo: \"Volapuk\",\n  wa: \"Walloon\",\n  cy: \"Welsh\",\n  xh: \"Xhosa\",\n  ji: \"Yiddish\",\n  zu: \"Zulu\"\n};\nexport const __FramerMetadata__ = {\n  \"exports\": {\n    \"fontSizeOptions\": {\n      \"type\": \"variable\",\n      \"annotations\": {\n        \"framerContractVersion\": \"1\"\n      }\n    },\n    \"fontControls\": {\n      \"type\": \"variable\",\n      \"annotations\": {\n        \"framerContractVersion\": \"1\"\n      }\n    },\n    \"localeOptions\": {\n      \"type\": \"variable\",\n      \"annotations\": {\n        \"framerContractVersion\": \"1\"\n      }\n    },\n    \"fontStack\": {\n      \"type\": \"variable\",\n      \"annotations\": {\n        \"framerContractVersion\": \"1\"\n      }\n    },\n    \"emptyStateStyle\": {\n      \"type\": \"variable\",\n      \"annotations\": {\n        \"framerContractVersion\": \"1\"\n      }\n    },\n    \"containerStyles\": {\n      \"type\": \"variable\",\n      \"annotations\": {\n        \"framerContractVersion\": \"1\"\n      }\n    },\n    \"defaultEvents\": {\n      \"type\": \"variable\",\n      \"annotations\": {\n        \"framerContractVersion\": \"1\"\n      }\n    }\n  }\n};\n//# sourceMappingURL=./constants.map", "import { useIsInCurrentNavigationTarget } from \"framer\";\nimport { useEffect } from \"react\";\nexport function useOnEnter(onEnter, enabled) {\n  return useOnSpecificTargetChange(true, onEnter, enabled);\n}\nexport function useOnExit(onExit, enabled) {\n  return useOnSpecificTargetChange(false, onExit, enabled);\n}\nfunction useOnSpecificTargetChange(goal, callback, enabled = true) {\n  const isInTarget = useIsInCurrentNavigationTarget();\n  useEffect(() => {\n    if (enabled && isInTarget === goal) callback();\n  }, [isInTarget]);\n}\nexport const __FramerMetadata__ = {\n  \"exports\": {\n    \"useOnEnter\": {\n      \"type\": \"function\",\n      \"annotations\": {\n        \"framerContractVersion\": \"1\"\n      }\n    },\n    \"useOnExit\": {\n      \"type\": \"function\",\n      \"annotations\": {\n        \"framerContractVersion\": \"1\"\n      }\n    }\n  }\n};\n//# sourceMappingURL=./useOnNavigationTargetChange.map", "import { useRef } from \"react\";\n/**\n * Creates a constant value over the lifecycle of a component.\n *\n * Even if `useMemo` is provided an empty array as its final argument, it doesn't offer\n * a guarantee that it won't re-run for performance reasons later on. By using `useConstant`\n * you can ensure that initialisers don't execute twice or more.\n */\nexport function useConstant(init) {\n  const ref = useRef(null);\n  if (ref.current === null) {\n    ref.current = init();\n  }\n  return ref.current;\n}\nexport const __FramerMetadata__ = {\n  \"exports\": {\n    \"useConstant\": {\n      \"type\": \"function\",\n      \"annotations\": {\n        \"framerContractVersion\": \"1\"\n      }\n    }\n  }\n};\n//# sourceMappingURL=./useConstant.map", "import { MotionValue } from \"framer\";\nexport const isMotionValue = v => v instanceof MotionValue;\nexport const __FramerMetadata__ = {\n  \"exports\": {\n    \"isMotionValue\": {\n      \"type\": \"variable\",\n      \"annotations\": {\n        \"framerContractVersion\": \"1\"\n      }\n    }\n  }\n};\n//# sourceMappingURL=./isMotionValue.map", "import { useMemo } from \"react\";\nexport const isBrowserSafari = () => {\n  if (typeof navigator !== `undefined`) {\n    const userAgent = navigator.userAgent.toLowerCase();\n    const isSafari = (userAgent.indexOf(\"safari\") > -1 || userAgent.indexOf(\"framermobile\") > -1 || userAgent.indexOf(\"framerx\") > -1) && userAgent.indexOf(\"chrome\") < 0;\n    return isSafari;\n  } else return false;\n};\nexport const useIsBrowserSafari = () => useMemo(() => isBrowserSafari(), []);\nexport const __FramerMetadata__ = {\n  \"exports\": {\n    \"useIsBrowserSafari\": {\n      \"type\": \"variable\",\n      \"annotations\": {\n        \"framerContractVersion\": \"1\"\n      }\n    },\n    \"isBrowserSafari\": {\n      \"type\": \"variable\",\n      \"annotations\": {\n        \"framerContractVersion\": \"1\"\n      }\n    }\n  }\n};\n//# sourceMappingURL=./isBrowser.map", "import { useEffect } from \"react\";\n//@ts-ignore\nimport { isMotionValue } from \"https://framerusercontent.com/modules/3mKFSGQqKHV82uOV1eBc/5fbRLvOpxZC0JOXugvwm/isMotionValue.js\";\nexport function useOnChange(value, callback) {\n  useEffect(() =>\n  // @ts-ignore this should be detected as a MV :shrug:\n  isMotionValue(value) ? value.onChange(callback) : undefined);\n}\nexport function useMultiOnChange(values, handler) {\n  useEffect(() => {\n    const subscriptions = values.map(value => value.onChange(handler));\n    return () => subscriptions.forEach(unsubscribe => unsubscribe());\n  });\n}\nexport const __FramerMetadata__ = {\n  \"exports\": {\n    \"Subscriber\": {\n      \"type\": \"tsType\",\n      \"annotations\": {\n        \"framerContractVersion\": \"1\"\n      }\n    },\n    \"useOnChange\": {\n      \"type\": \"function\",\n      \"annotations\": {\n        \"framerContractVersion\": \"1\"\n      }\n    },\n    \"useMultiOnChange\": {\n      \"type\": \"function\",\n      \"annotations\": {\n        \"framerContractVersion\": \"1\"\n      }\n    }\n  }\n};\n//# sourceMappingURL=./useOnChange.map", "import { useCallback, useEffect, useRef } from \"react\";\nimport { motionValue, animate, RenderTarget } from \"framer\";\n// @ts-ignore\nimport { isMotionValue } from \"https://framerusercontent.com/modules/3mKFSGQqKHV82uOV1eBc/5fbRLvOpxZC0JOXugvwm/isMotionValue.js\";\n// @ts-ignore\nimport { useConstant } from \"https://framerusercontent.com/modules/ExNgrA7EJTKUPpH6vIlN/eiOrSJ2Ab5M9jPCvVwUz/useConstant.js\";\nexport function useAutoMotionValue(inputValue, options) {\n  var ref;\n  // Put options on a local ref\n  // Might wanna just memo instead but it works for now\n  const optionsRef = useRef(options);\n  const animation = useRef();\n  const didInitialMount = useRef(false);\n  const isOnCanvas = RenderTarget.current() === RenderTarget.canvas;\n  // in-progress - trying to figure out effect hooks\n  const onChangeDeps = (options === null || options === void 0 ? void 0 : options.onChangeDeps) ? options.onChangeDeps : [];\n  // Memoize the onChange handler\n  const onChange = useCallback(options === null || options === void 0 ? void 0 : options.onChange, [...onChangeDeps]);\n  // Optionally scale the value from props\n  const transformer = useCallback(value => ((ref = optionsRef.current) === null || ref === void 0 ? void 0 : ref.transform) ? optionsRef.current.transform(value) : value, []);\n  // Create new MotionValue from inputValue\n  const value = useConstant(() => isMotionValue(inputValue) ? inputValue : motionValue(transformer(inputValue)));\n  // Setting value from prop change\n  useEffect(() => {\n    if (!isMotionValue(inputValue) && didInitialMount.current) {\n      var ref1, ref2;\n      const newValue = transformer(inputValue);\n      (ref1 = animation.current) === null || ref1 === void 0 ? void 0 : ref1.stop();\n      // Call change callback\n      if (onChange) onChange(newValue, value);\n      // Trigger animation to new value\n      if (((ref2 = optionsRef.current) === null || ref2 === void 0 ? void 0 : ref2.animate) && !isOnCanvas) {\n        var ref3;\n        // @ts-ignore\n        animation.current = animate(value, newValue, (ref3 = optionsRef.current) === null || ref3 === void 0 ? void 0 : ref3.transition);\n      } else {\n        value.set(newValue);\n      }\n    }\n    didInitialMount.current = true;\n  }, [inputValue, ...onChangeDeps]);\n  return value;\n}\nexport const __FramerMetadata__ = {\n  \"exports\": {\n    \"useAutoMotionValue\": {\n      \"type\": \"function\",\n      \"annotations\": {\n        \"framerContractVersion\": \"1\"\n      }\n    }\n  }\n};", "import { useMemo } from \"react\";\nimport { RenderTarget } from \"framer\";\nexport function useRenderTarget() {\n  const currentRenderTarget = useMemo(() => RenderTarget.current(), []);\n  return currentRenderTarget;\n}\nexport function useIsInPreview() {\n  const inPreview = useMemo(() => RenderTarget.current() === RenderTarget.preview, []);\n  return inPreview;\n}\nexport function useIsOnCanvas() {\n  const onCanvas = useMemo(() => RenderTarget.current() === RenderTarget.canvas, []);\n  return onCanvas;\n}\nexport const __FramerMetadata__ = {\n  \"exports\": {\n    \"useIsInPreview\": {\n      \"type\": \"function\",\n      \"annotations\": {\n        \"framerContractVersion\": \"1\"\n      }\n    },\n    \"useRenderTarget\": {\n      \"type\": \"function\",\n      \"annotations\": {\n        \"framerContractVersion\": \"1\"\n      }\n    },\n    \"useIsOnCanvas\": {\n      \"type\": \"function\",\n      \"annotations\": {\n        \"framerContractVersion\": \"1\"\n      }\n    }\n  }\n};\n//# sourceMappingURL=./useRenderTarget.map", "import { useMemo } from \"react\";\nimport { ControlType } from \"framer\";\nexport function useRadius(props) {\n  const {\n    borderRadius,\n    isMixedBorderRadius,\n    topLeftRadius,\n    topRightRadius,\n    bottomRightRadius,\n    bottomLeftRadius\n  } = props;\n  const radiusValue = useMemo(() => isMixedBorderRadius ? `${topLeftRadius}px ${topRightRadius}px ${bottomRightRadius}px ${bottomLeftRadius}px` : `${borderRadius}px`, [borderRadius, isMixedBorderRadius, topLeftRadius, topRightRadius, bottomRightRadius, bottomLeftRadius]);\n  return radiusValue;\n}\nexport const borderRadiusControl = {\n  borderRadius: {\n    title: \"Radius\",\n    type: ControlType.FusedNumber,\n    toggleKey: \"isMixedBorderRadius\",\n    toggleTitles: [\"Radius\", \"Radius per corner\"],\n    valueKeys: [\"topLeftRadius\", \"topRightRadius\", \"bottomRightRadius\", \"bottomLeftRadius\"],\n    valueLabels: [\"TL\", \"TR\", \"BR\", \"BL\"],\n    min: 0\n  }\n};\nexport function usePadding(props) {\n  const {\n    padding,\n    paddingPerSide,\n    paddingTop,\n    paddingRight,\n    paddingBottom,\n    paddingLeft\n  } = props;\n  const paddingValue = useMemo(() => paddingPerSide ? `${paddingTop}px ${paddingRight}px ${paddingBottom}px ${paddingLeft}px` : padding, [padding, paddingPerSide, paddingTop, paddingRight, paddingBottom, paddingLeft]);\n  return paddingValue;\n}\nexport const paddingControl = {\n  padding: {\n    type: ControlType.FusedNumber,\n    toggleKey: \"paddingPerSide\",\n    toggleTitles: [\"Padding\", \"Padding per side\"],\n    valueKeys: [\"paddingTop\", \"paddingRight\", \"paddingBottom\", \"paddingLeft\"],\n    valueLabels: [\"T\", \"R\", \"B\", \"L\"],\n    min: 0,\n    title: \"Padding\"\n  }\n};\nexport const __FramerMetadata__ = {\n  \"exports\": {\n    \"borderRadiusControl\": {\n      \"type\": \"variable\",\n      \"annotations\": {\n        \"framerContractVersion\": \"1\"\n      }\n    },\n    \"useRadius\": {\n      \"type\": \"function\",\n      \"annotations\": {\n        \"framerContractVersion\": \"1\"\n      }\n    },\n    \"RadiusProps\": {\n      \"type\": \"tsType\",\n      \"annotations\": {\n        \"framerContractVersion\": \"1\"\n      }\n    },\n    \"PaddingProps\": {\n      \"type\": \"tsType\",\n      \"annotations\": {\n        \"framerContractVersion\": \"1\"\n      }\n    },\n    \"usePadding\": {\n      \"type\": \"function\",\n      \"annotations\": {\n        \"framerContractVersion\": \"1\"\n      }\n    },\n    \"paddingControl\": {\n      \"type\": \"variable\",\n      \"annotations\": {\n        \"framerContractVersion\": \"1\"\n      }\n    }\n  }\n};\n//# sourceMappingURL=./propUtils.map", "import { jsx as _jsx } from \"react/jsx-runtime\";\nimport { useRef, useEffect, useMemo, useCallback, memo } from \"react\";\nimport { ControlType, RenderTarget, addPropertyControls, useIsInCurrentNavigationTarget } from \"framer\";\nimport { cachedResponse, corsProxy, hashCode, checkForCachedData } from \"https://framer.com/m/framer/default-video-utils.js\";\nimport { useOnEnter, useOnExit, defaultEvents, useAutoMotionValue, useIsBrowserSafari } from \"https://framer.com/m/framer/default-utils.js@^0.45.0\";\nvar ObjectFitType;\n(function (ObjectFitType) {\n  ObjectFitType[\"Fill\"] = \"fill\";\n  ObjectFitType[\"Contain\"] = \"contain\";\n  ObjectFitType[\"Cover\"] = \"cover\";\n  ObjectFitType[\"None\"] = \"none\";\n  ObjectFitType[\"ScaleDown\"] = \"scale-down\";\n})(ObjectFitType || (ObjectFitType = {}));\nvar LoopType;\n(function (LoopType) {\n  LoopType[\"StartTime\"] = \"startTime\";\n  LoopType[\"Beginning\"] = \"beginning\";\n  LoopType[\"NoLoop\"] = \"noLoop\";\n})(LoopType || (LoopType = {}));\nvar PreloadType;\n(function (PreloadType) {\n  PreloadType[\"None\"] = \"none\";\n  PreloadType[\"MetaData\"] = \"metadata\";\n  PreloadType[\"Auto\"] = \"auto\";\n  PreloadType[\"ForceCache\"] = \"force\";\n})(PreloadType || (PreloadType = {}));\nvar SrcType;\n(function (SrcType) {\n  SrcType[\"Video\"] = \"Upload\";\n  SrcType[\"Url\"] = \"URL\";\n})(SrcType || (SrcType = {})); // Reduce renders\nfunction getProps(props) {\n  const {\n    width,\n    height,\n    topLeft,\n    topRight,\n    bottomRight,\n    bottomLeft,\n    id,\n    children,\n    ...rest\n  } = props;\n  return rest;\n} /**\n  * VIDEO\n  *\n  * @framerIntrinsicWidth 200\n  * @framerIntrinsicHeight 200\n  *\n  * @framerSupportedLayoutWidth fixed\n  * @framerSupportedLayoutHeight any\n  */\nexport function Video(props) {\n  const newProps = getProps(props);\n  return /*#__PURE__*/_jsx(VideoMemo, {\n    ...newProps\n  });\n}\nconst VideoMemo = /*#__PURE__*/memo(function VideoInner(props) {\n  const {\n    srcType,\n    srcFile,\n    srcUrl,\n    playing,\n    canvasPlay,\n    loopType,\n    muted,\n    playsinline,\n    controls,\n    preload,\n    progress,\n    objectFit,\n    backgroundColor,\n    radius,\n    topLeft,\n    topRight,\n    bottomRight,\n    bottomLeft,\n    isMixed,\n    onSeeked,\n    onPause,\n    onPlay,\n    onEnd,\n    onClick,\n    onMouseEnter,\n    onMouseLeave,\n    onMouseDown,\n    onMouseUp,\n    poster,\n    restartOnEnter,\n    posterEnabled,\n    startTime: startTimeProp,\n    volume\n  } = props;\n  const isInCurrentNavigationTarget = useIsInCurrentNavigationTarget(); // video elements behave oddly at 100% duration\n  const startTime = startTimeProp === 100 ? 99.9 : startTimeProp;\n  const videoRef = useRef();\n  const isLoaded = useRef(false);\n  const isSafari = useIsBrowserSafari();\n  const wasPausedOnLeave = useRef(null);\n  const wasEndedOnLeave = useRef(null);\n  const loop = loopType !== LoopType.NoLoop;\n  const fullLoop = loopType === LoopType.Beginning;\n  const isCanvas = useMemo(() => RenderTarget.current() !== RenderTarget.preview, []);\n  const isForcedCache = preload === PreloadType.ForceCache;\n  const isAutoCache = preload === PreloadType.Auto;\n  const isMuted = useMemo(() => isCanvas ? true : muted, [isCanvas, muted]);\n  const shouldPlay = !isCanvas || canvasPlay;\n  const autoPlay = useMemo(() => playing, []);\n  const play = useCallback(() => {\n    var ref;\n    if (isInCurrentNavigationTarget) (ref = videoRef.current) === null || ref === void 0 ? void 0 : ref.play();\n  }, []);\n  const pause = useCallback(() => {\n    var ref;\n    return (ref = videoRef.current) === null || ref === void 0 ? void 0 : ref.pause();\n  }, []);\n  const restartVideo = useCallback((playAfter = true) => {\n    if (!fullLoop) setProgress(startTime, playAfter);else play();\n  }, [startTime, fullLoop]);\n  const setProgress = (newProgress, playAfter = false) => {\n    if (videoRef.current) {\n      const isAlreadySet = Math.abs(videoRef.current.currentTime - newProgress * 0.01 * videoRef.current.duration) < 0.3;\n      if (videoRef.current.duration > 0 && !isAlreadySet) videoRef.current.currentTime = newProgress * 0.01 * videoRef.current.duration;\n      if (autoPlay && shouldPlay && playAfter) play();\n    }\n  }; // Change progress via prop\n  useEffect(() => {\n    setProgress(startTime);\n  }, [startTimeProp, srcFile, srcUrl]);\n  const videoProgress = useAutoMotionValue(progress, {\n    transform: value => value * 0.01,\n    onChange: (newValue, value) => {\n      setProgress(newValue);\n    }\n  }); // Checking if we need to play on navigation enter\n  useOnEnter(() => {\n    if (wasPausedOnLeave.current === null) return;\n    if (videoRef.current) {\n      if (restartOnEnter) restartVideo(!wasPausedOnLeave.current || wasEndedOnLeave.current);else if (!wasEndedOnLeave && loop || !wasPausedOnLeave.current) play();\n    }\n  }); // Pausing & saving playing state on navigation exit\n  useOnExit(() => {\n    if (videoRef.current) {\n      wasEndedOnLeave.current = videoRef.current.ended;\n      wasPausedOnLeave.current = videoRef.current.paused;\n      pause();\n    }\n  });\n  const getUrl = useCallback((cors = false) => {\n    if (srcType === SrcType.Url) {\n      return cors ? corsProxy(srcUrl) : srcUrl;\n    }\n    if (srcType === SrcType.Video) {\n      return srcFile;\n    }\n  }, [srcType, srcFile, srcUrl]); // Logic for cache options\n  const setVideoRef = useCallback(async element => {\n    if (!element) return;\n    videoRef.current = element;\n    if (isSafari) {\n      videoRef.current[\"src\"] = getUrl();\n      return;\n    }\n    if (preload === PreloadType.ForceCache) {\n      if (isLoaded.current) return;\n      const url = getUrl(true);\n      const response = await cachedResponse(url);\n      if (response && videoRef.current) {\n        videoRef.current[\"src\"] = URL.createObjectURL(response) // IE10+\n        ;\n        isLoaded.current = true;\n      }\n    } else if (preload === PreloadType.Auto) {\n      if (isLoaded.current) return;\n      const url = getUrl(true);\n      const response = await checkForCachedData(url);\n      if (response && videoRef.current) videoRef.current[\"src\"] = URL.createObjectURL(response);else videoRef.current[\"src\"] = getUrl();\n      isLoaded.current = true;\n    }\n  }, [preload]); // Trigger rerender & reload when key props change\n  useEffect(() => {\n    if (isCanvas) isLoaded.current = false;\n    setVideoRef(videoRef.current);\n  }, [srcFile, srcUrl, srcType, posterEnabled, canvasPlay, preload, loop, autoPlay]); // Pause/play via props\n  useEffect(() => {\n    if (playing && shouldPlay) play();else pause();\n  }, [playing]); // Autoplay via JS to work in Safari\n  useEffect(() => {\n    if (isSafari && videoRef.current && autoPlay) {\n      setTimeout(() => {\n        play();\n      }, 50);\n    }\n  }, []); // Volume Control\n  useEffect(() => {\n    if (videoRef.current && !muted) videoRef.current.volume = volume / 100;\n  }, [volume]);\n  const key = useMemo(() => hashCode(JSON.stringify({\n    srcType,\n    srcUrl,\n    srcFile,\n    autoPlay,\n    canvasPlay,\n    isForcedCache\n  })), [srcType, srcUrl, srcFile, autoPlay, canvasPlay, isForcedCache]);\n  const borderRadius = isMixed ? `${topLeft}px ${topRight}px ${bottomRight}px ${bottomLeft}px` : `${radius}px`;\n  const src = useMemo(() => (isForcedCache || isAutoCache) && !isSafari ? null : getUrl(), [isSafari, isAutoCache, isForcedCache]);\n  return /*#__PURE__*/_jsx(\"video\", {\n    autoPlay: autoPlay && shouldPlay,\n    ref: setVideoRef,\n    onClick,\n    onMouseEnter,\n    onMouseLeave,\n    onMouseDown,\n    onMouseUp,\n    poster: posterEnabled ? poster : undefined,\n    style: {\n      width: \"100%\",\n      height: \"100%\",\n      borderRadius,\n      display: \"block\",\n      objectFit: objectFit,\n      backgroundColor: backgroundColor,\n      objectPosition: \"50% 50%\"\n    },\n    onSeeked: e => {\n      if (onSeeked) onSeeked(e);\n    },\n    onPause: e => {\n      if (onPause) onPause(e);\n    },\n    onPlay: e => {\n      if (onPlay) onPlay(e);\n    },\n    onEnded: e => {\n      if (onEnd) onEnd(e);\n      if (loop && shouldPlay && videoRef.current) restartVideo();\n    },\n    onCanPlay: () => {\n      if (shouldPlay && videoRef.current && autoPlay) play();else pause();\n      if (videoRef.current && videoRef.current.currentTime < 0.3) setProgress(startTime);\n    },\n    src: src,\n    controls: isCanvas ? false : controls,\n    muted: isMuted,\n    playsInline: playsinline\n  }, key);\n});\nVideo.defaultProps = {\n  srcType: SrcType.Url,\n  srcUrl: \"https://assets.mixkit.co/videos/preview/mixkit-ice-cream-glass-of-red-soda-5094-small.mp4\",\n  srcFile: \"\",\n  posterEnabled: true,\n  poster: \"https://misc.framerstatic.com/components/video-poster.jpg\",\n  controls: false,\n  autoPlay: true,\n  canvasPlay: false,\n  fullLoop: false,\n  muted: true,\n  playsinline: true,\n  restartOnEnter: false,\n  preload: PreloadType.Auto,\n  objectFit: ObjectFitType.Cover,\n  backgroundColor: \"rgba(0,0,0,0)\",\n  radius: 0,\n  volume: 25,\n  startTime: 0\n};\naddPropertyControls(Video, {\n  srcType: {\n    type: ControlType.Enum,\n    displaySegmentedControl: true,\n    title: \"Source\",\n    options: [SrcType.Url, SrcType.Video]\n  },\n  srcUrl: {\n    type: ControlType.String,\n    title: \" \",\n    placeholder: \"../example.mp4\",\n    hidden(props) {\n      return props.srcType === SrcType.Video;\n    }\n  },\n  srcFile: {\n    type: ControlType.File,\n    title: \" \",\n    allowedFileTypes: [\"mp4\"],\n    hidden(props) {\n      return props.srcType === SrcType.Url;\n    }\n  },\n  playing: {\n    type: ControlType.Boolean,\n    title: \"Playing\",\n    enabledTitle: \"Yes\",\n    disabledTitle: \"No\"\n  },\n  posterEnabled: {\n    type: ControlType.Boolean,\n    title: \"Poster\",\n    enabledTitle: \"Yes\",\n    disabledTitle: \"No\"\n  },\n  poster: {\n    type: ControlType.Image,\n    title: \" \",\n    defaultValue: Video.defaultProps.poster,\n    hidden: ({\n      posterEnabled\n    }) => !posterEnabled\n  },\n  backgroundColor: {\n    type: ControlType.Color,\n    title: \"Background\"\n  },\n  radius: {\n    title: \"Radius\",\n    type: ControlType.FusedNumber,\n    toggleKey: \"isMixed\",\n    toggleTitles: [\"Radius\", \"Radius per corner\"],\n    valueKeys: [\"topLeft\", \"topRight\", \"bottomRight\", \"bottomLeft\"],\n    valueLabels: [\"TL\", \"TR\", \"BR\", \"BL\"],\n    min: 0\n  },\n  startTime: {\n    title: \"Start Time\",\n    type: ControlType.Number,\n    min: 0,\n    max: 100,\n    step: 0.1,\n    unit: \"%\"\n  },\n  loopType: {\n    type: ControlType.Enum,\n    title: \"Loop\",\n    optionTitles: [\"From Start Time\", \"From Beginning\", \"Don't Loop\"],\n    options: [LoopType.StartTime, LoopType.Beginning, LoopType.NoLoop]\n  },\n  objectFit: {\n    type: ControlType.Enum,\n    title: \"Fit\",\n    options: [ObjectFitType.Cover, ObjectFitType.Fill, ObjectFitType.Contain, ObjectFitType.ScaleDown, ObjectFitType.None]\n  },\n  canvasPlay: {\n    type: ControlType.Boolean,\n    title: \"On Canvas\",\n    enabledTitle: \"Play\",\n    disabledTitle: \"Pause\",\n    hidden(props) {\n      return props.autoPlay === false;\n    }\n  },\n  restartOnEnter: {\n    type: ControlType.Boolean,\n    title: \"On ReEnter\",\n    enabledTitle: \"Restart\",\n    disabledTitle: \"Resume\"\n  },\n  controls: {\n    type: ControlType.Boolean,\n    title: \"Controls\",\n    enabledTitle: \"Show\",\n    disabledTitle: \"Hide\"\n  },\n  muted: {\n    type: ControlType.Boolean,\n    title: \"Muted\",\n    enabledTitle: \"Yes\",\n    disabledTitle: \"No\"\n  },\n  volume: {\n    type: ControlType.Number,\n    max: 100,\n    min: 0,\n    unit: \"%\",\n    hidden: ({\n      muted\n    }) => muted\n  },\n  // playsinline: { type: ControlType.Boolean, title: \"Inline\", enabledTitle: \"Yes\", disabledTitle: \"No\" },\n  preload: {\n    type: ControlType.Enum,\n    title: \"Cache\",\n    options: [PreloadType.Auto, PreloadType.None, PreloadType.ForceCache]\n  },\n  onEnd: {\n    type: ControlType.EventHandler\n  },\n  onSeeked: {\n    type: ControlType.EventHandler\n  },\n  onPause: {\n    type: ControlType.EventHandler\n  },\n  onPlay: {\n    type: ControlType.EventHandler\n  },\n  ...defaultEvents\n});\nexport const __FramerMetadata__ = {\n  \"exports\": {\n    \"Video\": {\n      \"type\": \"reactComponent\",\n      \"name\": \"Video\",\n      \"slots\": [],\n      \"annotations\": {\n        \"framerContractVersion\": \"1\",\n        \"framerIntrinsicHeight\": \"200\",\n        \"framerSupportedLayoutHeight\": \"any\",\n        \"framerIntrinsicWidth\": \"200\",\n        \"framerSupportedLayoutWidth\": \"fixed\"\n      }\n    },\n    \"VideoProps\": {\n      \"type\": \"tsType\",\n      \"annotations\": {\n        \"framerContractVersion\": \"1\"\n      }\n    },\n    \"__FramerMetadata__\": {\n      \"type\": \"variable\"\n    }\n  }\n};\n//# sourceMappingURL=./Video.map", "import { MotionValue } from \"framer\"; // Basic MotionValue check\nexport const isMotionValue = v => v instanceof MotionValue;\nexport const __FramerMetadata__ = {\n  \"exports\": {\n    \"isMotionValue\": {\n      \"type\": \"variable\",\n      \"annotations\": {\n        \"framerContractVersion\": \"1\"\n      }\n    },\n    \"__FramerMetadata__\": {\n      \"type\": \"variable\"\n    }\n  }\n};\n//# sourceMappingURL=./isMotionValue.map", "import{useCallback,useEffect,useRef}from\"react\";import{motionValue,animate,RenderTarget}from\"framer\";import{isMotionValue}from\"https://framerusercontent.com/modules/3mKFSGQqKHV82uOV1eBc/TbXI1XaZFNevVKcgIt7G/isMotionValue.js\";import{useConstant}from\"https://framerusercontent.com/modules/ExNgrA7EJTKUPpH6vIlN/eiOrSJ2Ab5M9jPCvVwUz/useConstant.js\";export function useAutoMotionValue(inputValue,options){// Put options on a local ref\n// Might wanna just memo instead but it works for now\nconst optionsRef=useRef(options);const animation=useRef();const didInitialMount=useRef(false);const isOnCanvas=RenderTarget.current()===RenderTarget.canvas;// in-progress - trying to figure out effect hooks\nconst onChangeDeps=(options===null||options===void 0?void 0:options.onChangeDeps)?options.onChangeDeps:[];// Memoize the onChange handler\nconst onChange=useCallback(options===null||options===void 0?void 0:options.onChange,[...onChangeDeps,]);// Optionally scale the value from props\nconst transformer=useCallback(value=>{var ref;return((ref=optionsRef.current)===null||ref===void 0?void 0:ref.transform)?optionsRef.current.transform(value):value;},[]);// Create new MotionValue from inputValue\nconst value1=useConstant(()=>isMotionValue(inputValue)?inputValue:motionValue(transformer(inputValue)));// Setting value from prop change\nuseEffect(()=>{if(!isMotionValue(inputValue)&&didInitialMount.current){var ref,ref1;const newValue=transformer(inputValue);(ref=animation.current)===null||ref===void 0?void 0:ref.stop();// Call change callback\nif(onChange)onChange(newValue,value1);// Trigger animation to new value\nif(((ref1=optionsRef.current)===null||ref1===void 0?void 0:ref1.animate)&&!isOnCanvas){var ref2;// @ts-ignore\nanimation.current=animate(value1,newValue,(ref2=optionsRef.current)===null||ref2===void 0?void 0:ref2.transition);}else{value1.set(newValue);}}didInitialMount.current=true;},[inputValue,...onChangeDeps]);return value1;}\nexport const __FramerMetadata__ = {\"exports\":{\"useAutoMotionValue\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./useAutoMotionValue.map", "import { jsx as _jsx } from \"react/jsx-runtime\";\nimport { useRef, useEffect, useMemo, useCallback, memo } from \"react\";\nimport { ControlType, addPropertyControls, useIsInCurrentNavigationTarget } from \"framer\";\nimport { useOnEnter, useOnExit, defaultEvents, useIsOnCanvas, useIsBrowserSafari, useOnChange, useRadius, borderRadiusControl } from \"https://framer.com/m/framer/default-utils.js@^0.45.0\";\nimport { useAutoMotionValue } from \"https://framer.com/m/framer/useAutoMotionValue.js@^0.3.0\";\nvar ObjectFitType;\n(function (ObjectFitType) {\n  ObjectFitType[\"Fill\"] = \"fill\";\n  ObjectFitType[\"Contain\"] = \"contain\";\n  ObjectFitType[\"Cover\"] = \"cover\";\n  ObjectFitType[\"None\"] = \"none\";\n  ObjectFitType[\"ScaleDown\"] = \"scale-down\";\n})(ObjectFitType || (ObjectFitType = {}));\nvar SrcType;\n(function (SrcType) {\n  SrcType[\"Video\"] = \"Upload\";\n  SrcType[\"Url\"] = \"URL\";\n})(SrcType || (SrcType = {})); // Reduce renders\nfunction getProps(props) {\n  const {\n    width,\n    height,\n    topLeft,\n    topRight,\n    bottomRight,\n    bottomLeft,\n    id,\n    children,\n    ...rest\n  } = props;\n  return rest;\n} /**\n  * VIDEO\n  *\n  * @framerIntrinsicWidth 200\n  * @framerIntrinsicHeight 112\n  *\n  * @framerSupportedLayoutWidth fixed\n  * @framerSupportedLayoutHeight any-prefer-fixed\n  */\nexport function Video(props) {\n  const newProps = getProps(props);\n  return /*#__PURE__*/_jsx(VideoMemo, {\n    ...newProps\n  });\n}\nconst VideoMemo = /*#__PURE__*/memo(function VideoInner(props) {\n  const {\n    srcType,\n    srcFile,\n    srcUrl,\n    playing,\n    canvasPlay,\n    muted,\n    playsinline,\n    controls,\n    progress,\n    objectFit,\n    backgroundColor,\n    radius,\n    topLeft,\n    topRight,\n    bottomRight,\n    bottomLeft,\n    isMixed,\n    onSeeked,\n    onPause,\n    onPlay,\n    onEnd,\n    onClick,\n    onMouseEnter,\n    onMouseLeave,\n    onMouseDown,\n    onMouseUp,\n    poster,\n    restartOnEnter,\n    posterEnabled,\n    startTime: startTimeProp,\n    volume,\n    loop\n  } = props;\n  const isInCurrentNavigationTarget = useIsInCurrentNavigationTarget();\n  const videoRef = useRef();\n  const isSafari = useIsBrowserSafari();\n  const requestingPlay = useRef(false);\n  const wasPausedOnLeave = useRef(null);\n  const wasEndedOnLeave = useRef(null);\n  const isOnCanvas = useIsOnCanvas();\n  const borderRadius = useRadius(props); // Video elements behave oddly at 100% duration\n  const startTime = startTimeProp === 100 ? 99.9 : startTimeProp;\n  const shouldPlay = !isOnCanvas || canvasPlay;\n  const autoPlay = useMemo(() => playing, []);\n  const isMuted = useMemo(() => isOnCanvas ? true : muted, [isOnCanvas, muted]);\n  const setProgress = useCallback(rawProgress => {\n    if (!videoRef.current) return;\n    const newProgress = (rawProgress === 1 ? 0.999 : rawProgress) * videoRef.current.duration;\n    const isAlreadySet = Math.abs(videoRef.current.currentTime - newProgress) < 0.1;\n    if (videoRef.current.duration > 0 && !isAlreadySet) {\n      videoRef.current.currentTime = newProgress;\n    }\n  }, []);\n  const play = useCallback(() => {\n    const isPlaying = videoRef.current.currentTime > 0 && videoRef.current.onplaying && !videoRef.current.paused && !videoRef.current.ended && videoRef.current.readyState > videoRef.current.HAVE_CURRENT_DATA;\n    if (!isPlaying && videoRef.current && !requestingPlay.current && isInCurrentNavigationTarget) {\n      requestingPlay.current = true;\n      videoRef.current.play().catch(e => {}) // It's likely fine, swallow error\n      .finally(() => requestingPlay.current = false);\n    }\n  }, []);\n  const pause = useCallback(() => {\n    if (!videoRef.current || requestingPlay.current) return;\n    videoRef.current.pause();\n  }, []); // Pause/play via props\n  useEffect(() => {\n    if (playing && shouldPlay) play();else pause();\n  }, [playing, canvasPlay]); // Change progress via prop\n  useEffect(() => {\n    setProgress(startTime * 0.01);\n  }, [startTimeProp, srcFile, srcUrl]);\n  const videoProgress = useAutoMotionValue(progress, {\n    transform: value => value * 0.01,\n    onChange: newValue => {\n      setProgress(newValue);\n    }\n  }); // Allow scrubbing with MotionValue\n  useOnChange(videoProgress, val => {\n    if (isOnCanvas) return;\n    setProgress(val);\n  }); // (Prototyping) Checking if we need to play on navigation enter\n  useOnEnter(() => {\n    if (wasPausedOnLeave.current === null) return;\n    if (videoRef.current) {\n      // if (restartOnEnter) setProgress(0)\n      if (!wasEndedOnLeave && loop || !wasPausedOnLeave.current) play();\n    }\n  }); // (Prototyping) Pausing & saving playing state on navigation exit\n  useOnExit(() => {\n    if (videoRef.current) {\n      wasEndedOnLeave.current = videoRef.current.ended;\n      wasPausedOnLeave.current = videoRef.current.paused;\n      pause();\n    }\n  });\n  const src = useMemo(() => {\n    if (srcType === SrcType.Url) return srcUrl;\n    if (srcType === SrcType.Video) return srcFile;\n  }, [srcType, srcFile, srcUrl]); // Autoplay via JS to work in Safari\n  useEffect(() => {\n    if (isSafari && videoRef.current && autoPlay) {\n      setTimeout(() => play(), 50);\n    }\n  }, []); // Volume Control\n  useEffect(() => {\n    if (videoRef.current && !muted) videoRef.current.volume = volume / 100;\n  }, [volume]); // When video is ready, set start-time, then autoplay if needed\n  const handleReady = () => {\n    if (videoRef.current && videoRef.current.currentTime < 0.3) setProgress(startTime * 0.01);\n    if (shouldPlay && videoRef.current && autoPlay) play();\n  };\n  return /*#__PURE__*/_jsx(\"video\", {\n    onClick,\n    onMouseEnter,\n    onMouseLeave,\n    onMouseDown,\n    onMouseUp,\n    src: src,\n    loop: loop,\n    ref: videoRef,\n    onSeeked: e => {\n      return onSeeked === null || onSeeked === void 0 ? void 0 : onSeeked(e);\n    },\n    onPause: e => {\n      return onPause === null || onPause === void 0 ? void 0 : onPause(e);\n    },\n    onPlay: e => {\n      return onPlay === null || onPlay === void 0 ? void 0 : onPlay(e);\n    },\n    onEnded: e => {\n      return onEnd === null || onEnd === void 0 ? void 0 : onEnd(e);\n    },\n    autoPlay: autoPlay && shouldPlay,\n    poster: posterEnabled ? poster : undefined,\n    onLoadedData: handleReady,\n    controls: controls,\n    muted: isMuted,\n    playsInline: playsinline,\n    style: {\n      width: \"100%\",\n      height: \"100%\",\n      borderRadius,\n      display: \"block\",\n      objectFit: objectFit,\n      backgroundColor: backgroundColor,\n      objectPosition: \"50% 50%\"\n    }\n  });\n});\nVideo.displayName = \"Video\";\nVideo.defaultProps = {\n  srcType: SrcType.Url,\n  srcUrl: \"https://assets.mixkit.co/videos/preview/mixkit-ice-cream-glass-of-red-soda-5094-small.mp4\",\n  srcFile: \"\",\n  posterEnabled: false,\n  controls: false,\n  autoPlay: true,\n  canvasPlay: false,\n  loop: true,\n  muted: true,\n  playsinline: true,\n  restartOnEnter: false,\n  objectFit: ObjectFitType.Cover,\n  backgroundColor: \"rgba(0,0,0,0)\",\n  radius: 0,\n  volume: 25,\n  startTime: 0\n};\naddPropertyControls(Video, {\n  srcType: {\n    type: ControlType.Enum,\n    displaySegmentedControl: true,\n    title: \"Source\",\n    options: [SrcType.Url, SrcType.Video]\n  },\n  srcUrl: {\n    type: ControlType.String,\n    title: \" \",\n    placeholder: \"../example.mp4\",\n    hidden(props) {\n      return props.srcType === SrcType.Video;\n    },\n    description: \"Hosted video file URL. For Youtube, use the Youtube component.\"\n  },\n  srcFile: {\n    type: ControlType.File,\n    title: \" \",\n    allowedFileTypes: [\"mp4\"],\n    hidden(props) {\n      return props.srcType === SrcType.Url;\n    }\n  },\n  playing: {\n    type: ControlType.Boolean,\n    title: \"Playing\",\n    enabledTitle: \"Yes\",\n    disabledTitle: \"No\"\n  },\n  posterEnabled: {\n    type: ControlType.Boolean,\n    title: \"Poster\",\n    enabledTitle: \"Yes\",\n    disabledTitle: \"No\"\n  },\n  poster: {\n    type: ControlType.Image,\n    title: \" \",\n    hidden: ({\n      posterEnabled\n    }) => !posterEnabled\n  },\n  backgroundColor: {\n    type: ControlType.Color,\n    title: \"Background\"\n  },\n  ...borderRadiusControl,\n  startTime: {\n    title: \"Start Time\",\n    type: ControlType.Number,\n    min: 0,\n    max: 100,\n    step: 0.1,\n    unit: \"%\"\n  },\n  loop: {\n    type: ControlType.Boolean,\n    title: \"Loop\",\n    enabledTitle: \"Yes\",\n    disabledTitle: \"No\"\n  },\n  objectFit: {\n    type: ControlType.Enum,\n    title: \"Fit\",\n    options: [ObjectFitType.Cover, ObjectFitType.Fill, ObjectFitType.Contain, ObjectFitType.ScaleDown, ObjectFitType.None]\n  },\n  canvasPlay: {\n    type: ControlType.Boolean,\n    title: \"On Canvas\",\n    enabledTitle: \"Play\",\n    disabledTitle: \"Pause\",\n    hidden(props) {\n      return props.autoPlay === false;\n    }\n  },\n  // restartOnEnter: {\n  //     type: ControlType.Boolean,\n  //     title: \"On ReEnter\",\n  //     enabledTitle: \"Restart\",\n  //     disabledTitle: \"Resume\",\n  // },\n  controls: {\n    type: ControlType.Boolean,\n    title: \"Controls\",\n    enabledTitle: \"Show\",\n    disabledTitle: \"Hide\"\n  },\n  muted: {\n    type: ControlType.Boolean,\n    title: \"Muted\",\n    enabledTitle: \"Yes\",\n    disabledTitle: \"No\"\n  },\n  volume: {\n    type: ControlType.Number,\n    max: 100,\n    min: 0,\n    unit: \"%\",\n    hidden: ({\n      muted\n    }) => muted\n  },\n  onEnd: {\n    type: ControlType.EventHandler\n  },\n  onSeeked: {\n    type: ControlType.EventHandler\n  },\n  onPause: {\n    type: ControlType.EventHandler\n  },\n  onPlay: {\n    type: ControlType.EventHandler\n  },\n  ...defaultEvents\n});\nexport const __FramerMetadata__ = {\n  \"exports\": {\n    \"Video\": {\n      \"type\": \"reactComponent\",\n      \"name\": \"Video\",\n      \"slots\": [],\n      \"annotations\": {\n        \"framerContractVersion\": \"1\",\n        \"framerIntrinsicHeight\": \"112\",\n        \"framerIntrinsicWidth\": \"200\",\n        \"framerSupportedLayoutHeight\": \"any-prefer-fixed\",\n        \"framerSupportedLayoutWidth\": \"fixed\"\n      }\n    },\n    \"VideoProps\": {\n      \"type\": \"tsType\",\n      \"annotations\": {\n        \"framerContractVersion\": \"1\"\n      }\n    },\n    \"__FramerMetadata__\": {\n      \"type\": \"variable\"\n    }\n  }\n};\n//# sourceMappingURL=./VideoNew.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 l;var d=n=>{if(!l){const t=(o,i,a)=>a.get(o)?a.get(o)(i):null,r=new Map;r.set(\"bold\",o=>n.createElement(n.Fragment,null,n.createElement(\"path\",{d:\"M151.99414,207.99263v-48.001a8,8,0,0,0-8-8h-32a8,8,0,0,0-8,8v48.001a8,8,0,0,1-7.999,8l-47.99414.00632a8,8,0,0,1-8.001-8v-92.4604a8,8,0,0,1,2.61811-5.91906l79.9945-72.73477a8,8,0,0,1,10.76339-.00036l80.0055,72.73509A8,8,0,0,1,216,115.53887V207.999a8,8,0,0,1-8.001,8l-48.00586-.00632A8,8,0,0,1,151.99414,207.99263Z\",fill:\"none\",stroke:o,strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"24\"}))),r.set(\"duotone\",o=>n.createElement(n.Fragment,null,n.createElement(\"path\",{d:\"M151.99414,207.99263v-48.001a8,8,0,0,0-8-8h-32a8,8,0,0,0-8,8v48.001a8,8,0,0,1-7.999,8l-47.99414.00632a8,8,0,0,1-8.001-8v-92.4604a8,8,0,0,1,2.61811-5.91906l79.9945-72.73477a8,8,0,0,1,10.76339-.00036l80.0055,72.73509A8,8,0,0,1,216,115.53887V207.999a8,8,0,0,1-8.001,8l-48.00586-.00632A8,8,0,0,1,151.99414,207.99263Z\",opacity:\"0.2\"}),n.createElement(\"path\",{d:\"M151.99414,207.99263v-48.001a8,8,0,0,0-8-8h-32a8,8,0,0,0-8,8v48.001a8,8,0,0,1-7.999,8l-47.99414.00632a8,8,0,0,1-8.001-8v-92.4604a8,8,0,0,1,2.61811-5.91906l79.9945-72.73477a8,8,0,0,1,10.76339-.00036l80.0055,72.73509A8,8,0,0,1,216,115.53887V207.999a8,8,0,0,1-8.001,8l-48.00586-.00632A8,8,0,0,1,151.99414,207.99263Z\",fill:\"none\",stroke:o,strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"16\"}))),r.set(\"fill\",()=>n.createElement(n.Fragment,null,n.createElement(\"path\",{d:\"M218.76367,103.7002,138.75684,30.96436a15.93657,15.93657,0,0,0-21.52637.00146L37.2373,103.69971A16.03108,16.03108,0,0,0,32,115.53857l0,92.09522a16.47275,16.47275,0,0,0,4.01066,10.96174A15.91729,15.91729,0,0,0,48.002,223.999H95.96484a8,8,0,0,0,8-8V167.9917a8,8,0,0,1,8-8h32a8,8,0,0,1,8,8V215.999a8,8,0,0,0,8,8h48.05731a15.40625,15.40625,0,0,0,7.53406-1.85584A16.08415,16.08415,0,0,0,224,207.999v-92.46A16.03567,16.03567,0,0,0,218.76367,103.7002Z\"}))),r.set(\"light\",o=>n.createElement(n.Fragment,null,n.createElement(\"path\",{d:\"M151.99414,207.99263v-48.001a8,8,0,0,0-8-8h-32a8,8,0,0,0-8,8v48.001a8,8,0,0,1-7.999,8l-47.99414.00632a8,8,0,0,1-8.001-8v-92.4604a8,8,0,0,1,2.61811-5.91906l79.9945-72.73477a8,8,0,0,1,10.76339-.00036l80.0055,72.73509A8,8,0,0,1,216,115.53887V207.999a8,8,0,0,1-8.001,8l-48.00586-.00632A8,8,0,0,1,151.99414,207.99263Z\",fill:\"none\",stroke:o,strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"12\"}))),r.set(\"thin\",o=>n.createElement(n.Fragment,null,n.createElement(\"path\",{d:\"M151.99414,207.99263v-48.001a8,8,0,0,0-8-8h-32a8,8,0,0,0-8,8v48.001a8,8,0,0,1-7.999,8l-47.99414.00632a8,8,0,0,1-8.001-8v-92.4604a8,8,0,0,1,2.61811-5.91906l79.9945-72.73477a8,8,0,0,1,10.76339-.00036l80.0055,72.73509A8,8,0,0,1,216,115.53887V207.999a8,8,0,0,1-8.001,8l-48.00586-.00632A8,8,0,0,1,151.99414,207.99263Z\",fill:\"none\",stroke:o,strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"8\"}))),r.set(\"regular\",o=>n.createElement(n.Fragment,null,n.createElement(\"path\",{d:\"M151.99414,207.99263v-48.001a8,8,0,0,0-8-8h-32a8,8,0,0,0-8,8v48.001a8,8,0,0,1-7.999,8l-47.99414.00632a8,8,0,0,1-8.001-8v-92.4604a8,8,0,0,1,2.61811-5.91906l79.9945-72.73477a8,8,0,0,1,10.76339-.00036l80.0055,72.73509A8,8,0,0,1,216,115.53887V207.999a8,8,0,0,1-8.001,8l-48.00586-.00632A8,8,0,0,1,151.99414,207.99263Z\",fill:\"none\",stroke:o,strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"16\"})));const e=(o,i)=>t(o,i,r),s=n.forwardRef((o,i)=>n.createElement(\"g\",{ref:i,...o},e(o.weight,o.color)));s.displayName=\"House\",l=s}return l};export{d as default};\n", "import { useMemo } from \"react\";\nimport { 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                                      */\nexport const containerStyles = {\n  width: \"100%\",\n  height: \"100%\",\n  display: \"flex\",\n  justifyContent: \"center\",\n  alignItems: \"center\"\n};\nexport const defaultEvents = {\n  onClick: {\n    type: ControlType.EventHandler\n  },\n  onMouseDown: {\n    type: ControlType.EventHandler\n  },\n  onMouseUp: {\n    type: ControlType.EventHandler\n  },\n  onMouseEnter: {\n    type: ControlType.EventHandler\n  },\n  onMouseLeave: {\n    type: ControlType.EventHandler\n  }\n};\nconst findByArray = (arr, search) => arr.find(a => a.toLowerCase().includes(search));\nexport function getIconSelection(iconKeys, selectByList, iconSearch = \"\", iconSelection, lowercaseIconKeyPairs) {\n  // gotta get the exact match first THEN find\n  // have a set and try to access ?\n  if (selectByList) return iconSelection;\n  if (iconSearch == null || (iconSearch === null || iconSearch === void 0 ? void 0 : iconSearch.length) === 0) return null;\n  const iconSearchTerm = iconSearch.toLowerCase().replace(/-|\\s/g, \"\");\n  var _iconSearchTerm; // check for exact match, otherwise use .find\n  const searchResult = (_iconSearchTerm = lowercaseIconKeyPairs[iconSearchTerm]) !== null && _iconSearchTerm !== void 0 ? _iconSearchTerm : findByArray(iconKeys, iconSearchTerm);\n  return searchResult;\n}\nexport function useIconSelection(iconKeys, selectByList, iconSearch = \"\", iconSelection, lowercaseIconKeyPairs) {\n  // Clean search term\n  const iconSearchResult = useMemo(() => {\n    if (iconSearch == null || (iconSearch === null || iconSearch === void 0 ? void 0 : iconSearch.length) === 0) return null;\n    const iconSearchTerm = iconSearch.toLowerCase().replace(/-|\\s/g, \"\");\n    var _iconSearchTerm; // check for exact match, otherwise use .find\n    const searchResult = (_iconSearchTerm = lowercaseIconKeyPairs[iconSearchTerm]) !== null && _iconSearchTerm !== void 0 ? _iconSearchTerm : findByArray(iconKeys, iconSearchTerm);\n    return searchResult;\n  }, [iconSelection, iconSearch]);\n  const name = selectByList ? iconSelection : iconSearchResult;\n  return name;\n}\nexport const __FramerMetadata__ = {\n  \"exports\": {\n    \"defaultEvents\": {\n      \"type\": \"variable\",\n      \"annotations\": {\n        \"framerContractVersion\": \"1\"\n      }\n    },\n    \"useIconSelection\": {\n      \"type\": \"function\",\n      \"annotations\": {\n        \"framerContractVersion\": \"1\"\n      }\n    },\n    \"getIconSelection\": {\n      \"type\": \"function\",\n      \"annotations\": {\n        \"framerContractVersion\": \"1\"\n      }\n    },\n    \"containerStyles\": {\n      \"type\": \"variable\",\n      \"annotations\": {\n        \"framerContractVersion\": \"1\"\n      }\n    }\n  }\n};\n//# sourceMappingURL=./utils.map", "import { jsx as _jsx } from \"react/jsx-runtime\";\nimport * as React from \"react\";\nimport { useState, useEffect, useRef } from \"react\";\nimport { addPropertyControls, ControlType, motion, RenderTarget } from \"framer\";\nimport { NullState } from \"https://framer.com/m/framer/icon-nullstate.js@0.7.0\";\nimport HouseFactory from \"https://framer.com/m/phosphor-icons/House.js@0.0.37\";\nimport { defaultEvents, useIconSelection } from \"https://framerusercontent.com/modules/Ma20hU0GGRxLxZphbywl/BwKdJRyuRNWL7zr4njQR/utils.js\";\nconst iconKeys = [\"Activity\", \"AddressBook\", \"Airplane\", \"AirplaneInFlight\", \"AirplaneLanding\", \"AirplaneTakeoff\", \"AirplaneTilt\", \"Airplay\", \"Alarm\", \"AlignBottom\", \"AlignCenterVertical\", \"AlignLeft\", \"AlignRight\", \"AlignTop\", \"Anchor\", \"AnchorSimple\", \"AndroidLogo\", \"Aperture\", \"AppWindow\", \"AppleLogo\", \"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\", \"ArrowsIn\", \"ArrowsInCardinal\", \"ArrowsInLineVertical\", \"ArrowsInSimple\", \"ArrowsLeftRight\", \"ArrowsOut\", \"ArrowsOutCardinal\", \"ArrowsOutSimple\", \"Article\", \"ArticleMedium\", \"ArticleNyTimes\", \"Asterisk\", \"At\", \"Atom\", \"Baby\", \"Backspace\", \"Bag\", \"BagSimple\", \"Bandaids\", \"Bank\", \"Barbell\", \"Barcode\", \"Baseball\", \"Basketball\", \"BatteryCharging\", \"BatteryEmpty\", \"BatteryFull\", \"BatteryHigh\", \"BatteryLow\", \"BatteryMedium\", \"BatteryWarning\", \"Bed\", \"Bell\", \"BellRinging\", \"BellSimple\", \"BellSimpleRinging\", \"BellSimpleSlash\", \"BellSimpleZ\", \"BellSlash\", \"BellZ\", \"Bicycle\", \"Bird\", \"Bluetooth\", \"BluetoothConnected\", \"BluetoothSlash\", \"BluetoothX\", \"Boat\", \"Book\", \"BookBookmark\", \"BookOpen\", \"Bookmark\", \"BookmarkSimple\", \"Bookmarks\", \"BookmarksSimple\", \"Books\", \"BoundingBox\", \"BracketsAngle\", \"BracketsCurly\", \"BracketsRound\", \"BracketsSquare\", \"Brain\", \"Brandy\", \"Briefcase\", \"BriefcaseMetal\", \"Broadcast\", \"Browser\", \"Browsers\", \"Bug\", \"BugBeetle\", \"BugDroid\", \"Buildings\", \"Bus\", \"Cake\", \"Calculator\", \"Calendar\", \"CalendarBlank\", \"CalendarCheck\", \"CalendarPlus\", \"CalendarX\", \"Camera\", \"CameraSlash\", \"Car\", \"CarSimple\", \"Cardholder\", \"Cards\", \"CaretCircleDoubleUp\", \"CaretCircleDown\", \"CaretCircleLeft\", \"CaretCircleRight\", \"CaretCircleUp\", \"CaretDoubleDown\", \"CaretDoubleLeft\", \"CaretDoubleRight\", \"CaretDoubleUp\", \"CaretDown\", \"CaretLeft\", \"CaretRight\", \"CaretUp\", \"Cat\", \"CellSignalFull\", \"CellSignalHigh\", \"CellSignalLow\", \"CellSignalMedium\", \"CellSignalNone\", \"CellSignalSlash\", \"CellSignalX\", \"Chalkboard\", \"ChalkboardSimple\", \"ChalkboardTeacher\", \"ChartBar\", \"ChartBarHorizontal\", \"ChartLine\", \"ChartLineUp\", \"ChartPie\", \"ChartPieSlice\", \"Chat\", \"ChatCentered\", \"ChatCenteredDots\", \"ChatCenteredText\", \"ChatCircle\", \"ChatCircleDots\", \"ChatCircleText\", \"ChatDots\", \"ChatTeardrop\", \"ChatTeardropDots\", \"ChatTeardropText\", \"ChatText\", \"Chats\", \"ChatsCircle\", \"ChatsTeardrop\", \"Check\", \"CheckCircle\", \"CheckSquare\", \"CheckSquareOffset\", \"Checks\", \"Circle\", \"CircleDashed\", \"CircleHalf\", \"CircleHalfTilt\", \"CircleWavy\", \"CircleWavyCheck\", \"CircleWavyQuestion\", \"CircleWavyWarning\", \"CirclesFour\", \"CirclesThree\", \"CirclesThreePlus\", \"Clipboard\", \"ClipboardText\", \"Clock\", \"ClockAfternoon\", \"ClockClockwise\", \"ClosedCaptioning\", \"Cloud\", \"CloudArrowDown\", \"CloudArrowUp\", \"CloudCheck\", \"CloudFog\", \"CloudLightning\", \"CloudMoon\", \"CloudRain\", \"CloudSlash\", \"CloudSnow\", \"CloudSun\", \"Club\", \"Code\", \"CodeSimple\", \"Coffee\", \"Coin\", \"Columns\", \"Command\", \"Compass\", \"ComputerTower\", \"Cookie\", \"CookingPot\", \"Copy\", \"CopySimple\", \"Copyright\", \"CornersIn\", \"CornersOut\", \"Cpu\", \"CreditCard\", \"Crop\", \"Crosshair\", \"CrosshairSimple\", \"Crown\", \"CrownSimple\", \"Cube\", \"CurrencyBtc\", \"CurrencyCircleDollar\", \"CurrencyCny\", \"CurrencyDollar\", \"CurrencyDollarSimple\", \"CurrencyEur\", \"CurrencyGbp\", \"CurrencyInr\", \"CurrencyJpy\", \"CurrencyKrw\", \"CurrencyRub\", \"Cursor\", \"Database\", \"Desktop\", \"DesktopTower\", \"DeviceMobile\", \"DeviceMobileCamera\", \"DeviceMobileSpeaker\", \"DeviceTablet\", \"DeviceTabletCamera\", \"DeviceTabletSpeaker\", \"Diamond\", \"DiceFive\", \"DiceFour\", \"DiceOne\", \"DiceSix\", \"DiceThree\", \"DiceTwo\", \"Disc\", \"DiscordLogo\", \"Divide\", \"Dog\", \"Door\", \"DotsNine\", \"DotsSix\", \"DotsSixVertical\", \"DotsThree\", \"DotsThreeCircle\", \"DotsThreeOutline\", \"DotsThreeVertical\", \"Download\", \"DownloadSimple\", \"DribbbleLogo\", \"Drop\", \"DropHalf\", \"Ear\", \"EarSlash\", \"Eject\", \"EjectSimple\", \"Envelope\", \"EnvelopeOpen\", \"EnvelopeSimple\", \"EnvelopeSimpleOpen\", \"Equals\", \"Eraser\", \"Export\", \"Eye\", \"EyeClosed\", \"EyeSlash\", \"Eyedropper\", \"FaceMask\", \"FacebookLogo\", \"Factory\", \"Faders\", \"FadersHorizontal\", \"FastForward\", \"FastForwardCircle\", \"FigmaLogo\", \"File\", \"FileArrowDown\", \"FileArrowUp\", \"FileDotted\", \"FileMinus\", \"FilePdf\", \"FilePlus\", \"FileSearch\", \"FileText\", \"FileX\", \"Files\", \"FilmStrip\", \"Fingerprint\", \"FingerprintSimple\", \"FinnTheHuman\", \"Fire\", \"FireSimple\", \"FirstAid\", \"FirstAidKit\", \"Fish\", \"FishSimple\", \"Flag\", \"FlagBanner\", \"Flame\", \"Flashlight\", \"Flask\", \"FloppyDisk\", \"FloppyDiskBack\", \"FlowArrow\", \"Flower\", \"FlowerLotus\", \"Folder\", \"FolderMinus\", \"FolderNotch\", \"FolderNotchMinus\", \"FolderNotchOpen\", \"FolderNotchPlus\", \"FolderOpen\", \"FolderPlus\", \"FolderSimple\", \"FolderSimpleMinus\", \"FolderSimplePlus\", \"Folders\", \"Football\", \"ForkKnife\", \"FrameCorners\", \"FramerLogo\", \"Funnel\", \"FunnelSimple\", \"GameController\", \"GasPump\", \"Gauge\", \"Gear\", \"GearSix\", \"GenderFemale\", \"GenderIntersex\", \"GenderMale\", \"GenderNeuter\", \"GenderNonbinary\", \"GenderTransgender\", \"Ghost\", \"Gif\", \"Gift\", \"GitBranch\", \"GitCommit\", \"GitDiff\", \"GitFork\", \"GitMerge\", \"GitPullRequest\", \"GithubLogo\", \"GitlabLogo\", \"GitlabLogoSimple\", \"Globe\", \"GlobeHemisphereEast\", \"GlobeHemisphereWest\", \"GlobeSimple\", \"GlobeStand\", \"GoogleLogo\", \"GooglePlayLogo\", \"GraduationCap\", \"GridFour\", \"Hand\", \"HandFist\", \"HandGrabbing\", \"HandPalm\", \"HandPointing\", \"HandSoap\", \"HandWaving\", \"Handbag\", \"HandbagSimple\", \"HandsClapping\", \"Handshake\", \"HardDrive\", \"HardDrives\", \"Hash\", \"HashStraight\", \"Headlights\", \"Headphones\", \"Headset\", \"Heart\", \"HeartStraight\", \"Heartbeat\", \"Hexagon\", \"HighlighterCircle\", \"Horse\", \"Hourglass\", \"HourglassHigh\", \"HourglassLow\", \"HourglassMedium\", \"HourglassSimple\", \"HourglassSimpleHigh\", \"HourglassSimpleLow\", \"House\", \"HouseLine\", \"HouseSimple\", \"IdentificationBadge\", \"IdentificationCard\", \"Image\", \"ImageSquare\", \"Infinity\", \"Info\", \"InstagramLogo\", \"Intersect\", \"Jeep\", \"Key\", \"KeyReturn\", \"Keyboard\", \"Knife\", \"Lamp\", \"Laptop\", \"Layout\", \"Leaf\", \"Lifebuoy\", \"Lightbulb\", \"LightbulbFilament\", \"Lightning\", \"LightningSlash\", \"LineSegment\", \"LineSegments\", \"Link\", \"LinkBreak\", \"LinkSimple\", \"LinkSimpleBreak\", \"LinkSimpleHorizontal\", \"LinkedinLogo\", \"List\", \"ListBullets\", \"ListDashes\", \"ListNumbers\", \"ListPlus\", \"Lock\", \"LockKey\", \"LockKeyOpen\", \"LockLaminated\", \"LockLaminatedOpen\", \"LockOpen\", \"LockSimple\", \"LockSimpleOpen\", \"MagicWand\", \"Magnet\", \"MagnetStraight\", \"MagnifyingGlass\", \"MagnifyingGlassMinus\", \"MagnifyingGlassPlus\", \"MapPin\", \"MapPinLine\", \"MapTrifold\", \"MarkerCircle\", \"Martini\", \"MathOperations\", \"Medal\", \"MediumLogo\", \"Megaphone\", \"MegaphoneSimple\", \"MessengerLogo\", \"Microphone\", \"MicrophoneSlash\", \"Minus\", \"MinusCircle\", \"Money\", \"Monitor\", \"MonitorPlay\", \"Moon\", \"MoonStars\", \"Mouse\", \"MouseSimple\", \"MusicNote\", \"MusicNoteSimple\", \"MusicNotes\", \"MusicNotesSimple\", \"NavigationArrow\", \"Newspaper\", \"NewspaperClipping\", \"Note\", \"NoteBlank\", \"NotePencil\", \"Notebook\", \"Notepad\", \"Notification\", \"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\", \"Nut\", \"NyTimesLogo\", \"Octagon\", \"Package\", \"PaintBrush\", \"PaintBrushBroad\", \"PaintBrushHousehold\", \"PaintBucket\", \"PaintRoller\", \"Palette\", \"PaperPlane\", \"PaperPlaneRight\", \"PaperPlaneTilt\", \"Paperclip\", \"PaperclipHorizontal\", \"Path\", \"Pause\", \"PauseCircle\", \"PawPrint\", \"Peace\", \"Pen\", \"PenNib\", \"PenNibStraight\", \"Pencil\", \"PencilCircle\", \"PencilLine\", \"PencilSimple\", \"Percent\", \"Person\", \"PersonSimple\", \"PersonSimpleRun\", \"PersonSimpleWalk\", \"Phone\", \"PhoneCall\", \"PhoneDisconnect\", \"PhoneIncoming\", \"PhoneOutgoing\", \"PhoneSlash\", \"PhoneX\", \"PhosphorLogo\", \"PictureInPicture\", \"Pill\", \"PinterestLogo\", \"Pizza\", \"Placeholder\", \"Planet\", \"Play\", \"PlayCircle\", \"Playlist\", \"Plus\", \"PlusCircle\", \"PlusMinus\", \"PokerChip\", \"Polygon\", \"Power\", \"Prescription\", \"Presentation\", \"PresentationChart\", \"Printer\", \"Prohibit\", \"ProhibitInset\", \"ProjectorScreen\", \"ProjectorScreenChart\", \"PushPin\", \"PushPinSimple\", \"PushPinSimpleSlash\", \"PushPinSlash\", \"PuzzlePiece\", \"QrCode\", \"Question\", \"Queue\", \"Quotes\", \"Radical\", \"Radio\", \"Rainbow\", \"RainbowCloud\", \"Receipt\", \"Record\", \"Rectangle\", \"Recycle\", \"RedditLogo\", \"Repeat\", \"RepeatOnce\", \"Rewind\", \"RewindCircle\", \"Robot\", \"Rocket\", \"RocketLaunch\", \"Rows\", \"Rss\", \"RssSimple\", \"Ruler\", \"Scales\", \"Scissors\", \"Screencast\", \"ScribbleLoop\", \"Selection\", \"SelectionAll\", \"SelectionBackground\", \"SelectionForeground\", \"SelectionInverse\", \"SelectionPlus\", \"SelectionSlash\", \"Share\", \"ShareNetwork\", \"Shield\", \"ShieldCheck\", \"ShieldCheckered\", \"ShieldChevron\", \"ShieldPlus\", \"ShieldSlash\", \"ShieldWarning\", \"ShoppingBag\", \"ShoppingBagOpen\", \"ShoppingCart\", \"ShoppingCartSimple\", \"Shower\", \"Shuffle\", \"ShuffleAngular\", \"ShuffleSimple\", \"SignIn\", \"SignOut\", \"SimCard\", \"SketchLogo\", \"SkipBack\", \"SkipBackCircle\", \"SkipForward\", \"SkipForwardCircle\", \"SlackLogo\", \"Sliders\", \"SlidersHorizontal\", \"Smiley\", \"SmileyBlank\", \"SmileyMeh\", \"SmileyNervous\", \"SmileySad\", \"SmileySticker\", \"SmileyWink\", \"SmileyXEyes\", \"SnapchatLogo\", \"Snowflake\", \"SoccerBall\", \"SortAscending\", \"SortDescending\", \"Spade\", \"Sparkle\", \"SpeakerHigh\", \"SpeakerLow\", \"SpeakerNone\", \"SpeakerSimpleHigh\", \"SpeakerSimpleLow\", \"SpeakerSimpleNone\", \"SpeakerSimpleSlash\", \"SpeakerSimpleX\", \"SpeakerSlash\", \"SpeakerX\", \"Spinner\", \"SpinnerGap\", \"SpotifyLogo\", \"Square\", \"SquareHalf\", \"SquareLogo\", \"SquaresFour\", \"Stack\", \"StackSimple\", \"Star\", \"StarFour\", \"StarHalf\", \"Sticker\", \"Stop\", \"StopCircle\", \"Storefront\", \"StripeLogo\", \"Student\", \"Suitcase\", \"SuitcaseSimple\", \"Sun\", \"SunDim\", \"SunHorizon\", \"Swap\", \"Swatches\", \"Sword\", \"TShirt\", \"Table\", \"Tag\", \"TagChevron\", \"TagSimple\", \"Target\", \"TelegramLogo\", \"Television\", \"TelevisionSimple\", \"TennisBall\", \"Terminal\", \"TerminalWindow\", \"TestTube\", \"TextAa\", \"TextAlignCenter\", \"TextAlignJustify\", \"TextAlignLeft\", \"TextAlignRight\", \"TextBolder\", \"TextH\", \"TextHFive\", \"TextHFour\", \"TextHOne\", \"TextHSix\", \"TextHThree\", \"TextHTwo\", \"TextItalic\", \"TextStrikethrough\", \"TextT\", \"TextUnderline\", \"Thermometer\", \"ThermometerCold\", \"ThermometerHot\", \"ThermometerSimple\", \"ThumbsDown\", \"ThumbsUp\", \"Ticket\", \"TiktokLogo\", \"Timer\", \"ToggleLeft\", \"ToggleRight\", \"ToiletPaper\", \"Tote\", \"ToteSimple\", \"TrafficSign\", \"Train\", \"TrainRegional\", \"TrainSimple\", \"Translate\", \"Trash\", \"TrashSimple\", \"Tray\", \"Tree\", \"TreeEvergreen\", \"TreeStructure\", \"TrendDown\", \"TrendUp\", \"Triangle\", \"Trophy\", \"Truck\", \"TwitchLogo\", \"TwitterLogo\", \"Umbrella\", \"UmbrellaSimple\", \"Upload\", \"UploadSimple\", \"User\", \"UserCircle\", \"UserCircleGear\", \"UserCircleMinus\", \"UserCirclePlus\", \"UserFocus\", \"UserGear\", \"UserList\", \"UserMinus\", \"UserPlus\", \"UserRectangle\", \"UserSquare\", \"Users\", \"UsersFour\", \"UsersThree\", \"Vibrate\", \"VideoCamera\", \"VideoCameraSlash\", \"Voicemail\", \"Volleyball\", \"Wall\", \"Wallet\", \"Warning\", \"WarningCircle\", \"WarningOctagon\", \"Watch\", \"Waves\", \"WhatsappLogo\", \"Wheelchair\", \"WifiHigh\", \"WifiLow\", \"WifiMedium\", \"WifiNone\", \"WifiSlash\", \"WifiX\", \"Wind\", \"WindowsLogo\", \"Wine\", \"Wrench\", \"X\", \"XCircle\", \"XSquare\", \"YoutubeLogo\"];\nconst moduleBaseUrl = \"https://framer.com/m/phosphor-icons/\";\nconst weightOptions = [\"thin\", \"light\", \"regular\", \"bold\", \"fill\", \"duotone\"];\nconst lowercaseIconKeyPairs = iconKeys.reduce((res, key) => {\n  res[key.toLowerCase()] = key;\n  return res;\n}, {}); /**\n        * PHOSPHOR\n        *\n        * @framerSupportedLayoutWidth fixed\n        * @framerSupportedLayoutHeight fixed\n        *\n        * @framerIntrinsicWidth 24\n        * @framerIntrinsicHeight 24\n        */\nexport function Icon(props) {\n  const {\n    color,\n    selectByList,\n    iconSearch,\n    iconSelection,\n    onClick,\n    onMouseDown,\n    onMouseUp,\n    onMouseEnter,\n    onMouseLeave,\n    weight,\n    mirrored\n  } = props;\n  const isMounted = useRef(false);\n  const iconKey = useIconSelection(iconKeys, selectByList, iconSearch, iconSelection, lowercaseIconKeyPairs);\n  const [SelectedIcon, setSelectedIcon] = useState(iconKey === \"Home\" ? HouseFactory(React) : null);\n  async function importModule() {\n    // Get the selected module\n    try {\n      const iconModuleUrl = `${moduleBaseUrl}${iconKey}.js@0.0.37`;\n      const module = await import( /* webpackIgnore: true */iconModuleUrl);\n      if (isMounted.current) setSelectedIcon(module.default(React));\n    } catch (err) {\n      if (isMounted.current) setSelectedIcon(null);\n    }\n  }\n  useEffect(() => {\n    isMounted.current = true;\n    importModule();\n    return () => {\n      isMounted.current = false;\n    };\n  }, [iconKey]);\n  const isOnCanvas = RenderTarget.current() === RenderTarget.canvas;\n  const emptyState = isOnCanvas ? /*#__PURE__*/_jsx(NullState, {}) : null;\n  return /*#__PURE__*/_jsx(motion.div, {\n    style: {\n      display: \"contents\"\n    },\n    onClick,\n    onMouseEnter,\n    onMouseLeave,\n    onMouseDown,\n    onMouseUp,\n    children: SelectedIcon ? /*#__PURE__*/_jsx(\"svg\", {\n      xmlns: \"http://www.w3.org/2000/svg\",\n      viewBox: \"0 0 256 256\",\n      style: {\n        userSelect: \"none\",\n        width: \"100%\",\n        height: \"100%\",\n        display: \"inline-block\",\n        fill: color,\n        flexShrink: 0,\n        transform: mirrored ? \"scale(-1, 1)\" : undefined\n      },\n      focusable: \"false\",\n      color: color,\n      children: /*#__PURE__*/_jsx(SelectedIcon, {\n        color: color,\n        weight: weight\n      })\n    }) : emptyState\n  });\n}\nIcon.displayName = \"Phosphor\";\nIcon.defaultProps = {\n  width: 24,\n  height: 24,\n  iconSelection: \"House\",\n  iconSearch: \"House\",\n  color: \"#66F\",\n  selectByList: true,\n  weight: \"regular\",\n  mirrored: false\n};\naddPropertyControls(Icon, {\n  selectByList: {\n    type: ControlType.Boolean,\n    title: \"Select\",\n    enabledTitle: \"List\",\n    disabledTitle: \"Search\",\n    defaultValue: Icon.defaultProps.selectByList\n  },\n  iconSelection: {\n    type: ControlType.Enum,\n    options: iconKeys,\n    defaultValue: Icon.defaultProps.iconSelection,\n    title: \"Name\",\n    hidden: ({\n      selectByList\n    }) => !selectByList\n  },\n  iconSearch: {\n    type: ControlType.String,\n    title: \"Name\",\n    placeholder: \"Menu, Wifi, Box\u2026\",\n    hidden: ({\n      selectByList\n    }) => selectByList\n  },\n  color: {\n    type: ControlType.Color,\n    title: \"Color\",\n    defaultValue: Icon.defaultProps.color\n  },\n  weight: {\n    type: ControlType.Enum,\n    title: \"Weight\",\n    optionTitles: weightOptions.map(piece => piece.charAt(0).toUpperCase() + piece.slice(1)),\n    options: weightOptions,\n    defaultValue: Icon.defaultProps.weight\n  },\n  mirrored: {\n    type: ControlType.Boolean,\n    enabledTitle: \"Yes\",\n    disabledTitle: \"No\",\n    defaultValue: Icon.defaultProps.mirrored\n  },\n  ...defaultEvents\n});\nexport const __FramerMetadata__ = {\n  \"exports\": {\n    \"IconProps\": {\n      \"type\": \"tsType\",\n      \"annotations\": {\n        \"framerContractVersion\": \"1\"\n      }\n    },\n    \"Icon\": {\n      \"type\": \"reactComponent\",\n      \"name\": \"Icon\",\n      \"slots\": [],\n      \"annotations\": {\n        \"framerIntrinsicWidth\": \"24\",\n        \"framerSupportedLayoutWidth\": \"fixed\",\n        \"framerContractVersion\": \"1\",\n        \"framerSupportedLayoutHeight\": \"fixed\",\n        \"framerIntrinsicHeight\": \"24\"\n      }\n    },\n    \"__FramerMetadata__\": {\n      \"type\": \"variable\"\n    }\n  }\n};\n//# sourceMappingURL=./Phosphor.map", "// Generated by Framer (a5a1a51)\nimport { jsx as _jsx } from \"react/jsx-runtime\";\nimport { addFonts, addPropertyControls, ControlType, cx, Text, useVariantState, withCSS } from \"framer\";\nimport { LayoutGroup, motion, MotionConfigContext } from \"framer-motion\";\nimport * as React from \"react\";\nconst enabledGestures = {\n  RKoV4OAn4: {\n    hover: true,\n    pressed: true\n  },\n  ztMitrOzb: {\n    hover: true,\n    pressed: true\n  }\n};\nconst cycleOrder = [\"ztMitrOzb\", \"RKoV4OAn4\"];\nconst variantClassNames = {\n  RKoV4OAn4: \"framer-v-1ihsh03\",\n  ztMitrOzb: \"framer-v-159h240\"\n};\nfunction addPropertyOverrides(overrides, ...variants) {\n  const nextOverrides = {};\n  variants === null || variants === void 0 ? void 0 : variants.forEach(variant => variant && Object.assign(nextOverrides, overrides[variant]));\n  return nextOverrides;\n}\nconst humanReadableVariantMap = {\n  \"Primary Small\": \"RKoV4OAn4\",\n  Primary: \"ztMitrOzb\"\n};\nconst transitions = {\n  default: {\n    damping: 60,\n    delay: 0,\n    mass: 1,\n    stiffness: 500,\n    type: \"spring\"\n  }\n};\nconst Transition = ({\n  value,\n  children\n}) => {\n  const config = React.useContext(MotionConfigContext);\n  const transition = value !== null && value !== void 0 ? value : config.transition;\n  const contextValue = React.useMemo(() => ({\n    ...config,\n    transition\n  }), [JSON.stringify(transition)]);\n  return /*#__PURE__*/_jsx(MotionConfigContext.Provider, {\n    value: contextValue,\n    children: children\n  });\n};\nconst Component = /*#__PURE__*/React.forwardRef(function ({\n  id,\n  style,\n  className,\n  width,\n  height,\n  layoutId,\n  variant: outerVariant = \"ztMitrOzb\",\n  title: EooxvsCSG = \"Download MAC APP\",\n  ...restProps\n}, ref) {\n  const outerVariantId = humanReadableVariantMap[outerVariant];\n  const variant = outerVariantId || outerVariant;\n  const {\n    baseVariant,\n    classNames,\n    gestureVariant,\n    setGestureState,\n    setVariant,\n    transition,\n    variants\n  } = useVariantState({\n    cycleOrder,\n    defaultVariant: \"ztMitrOzb\",\n    enabledGestures,\n    transitions,\n    variant,\n    variantClassNames\n  });\n  const layoutDependency = variants.join(\"-\") + restProps.layoutDependency;\n  const defaultLayoutId = React.useId();\n  return /*#__PURE__*/_jsx(LayoutGroup, {\n    id: layoutId !== null && layoutId !== void 0 ? layoutId : defaultLayoutId,\n    children: /*#__PURE__*/_jsx(motion.div, {\n      initial: variant,\n      animate: variants,\n      onHoverStart: () => setGestureState({\n        isHovered: true\n      }),\n      onHoverEnd: () => setGestureState({\n        isHovered: false\n      }),\n      onTapStart: () => setGestureState({\n        isPressed: true\n      }),\n      onTap: () => setGestureState({\n        isPressed: false\n      }),\n      onTapCancel: () => setGestureState({\n        isPressed: false\n      }),\n      className: cx(\"framer-n6tT2\", classNames),\n      style: {\n        display: \"contents\"\n      },\n      children: /*#__PURE__*/_jsx(Transition, {\n        value: transition,\n        children: /*#__PURE__*/_jsx(motion.div, {\n          ...restProps,\n          __perspectiveFX: false,\n          __targetOpacity: 1,\n          className: cx(\"framer-159h240\", className),\n          \"data-framer-name\": \"Primary\",\n          layoutDependency: layoutDependency,\n          layoutId: \"ztMitrOzb\",\n          ref: ref,\n          style: {\n            background: \"linear-gradient(105deg, hsl(329, 100%, 49%) 0%, hsl(236, 92%, 63%) 100%)\",\n            borderBottomLeftRadius: 38,\n            borderBottomRightRadius: 38,\n            borderTopLeftRadius: 38,\n            borderTopRightRadius: 38,\n            boxShadow: \"0px 10px 20px 0px rgba(0, 0, 0, 0.1)\",\n            opacity: 1,\n            ...style\n          },\n          variants: {\n            \"RKoV4OAn4-hover\": {\n              opacity: .5\n            },\n            \"RKoV4OAn4-pressed\": {\n              opacity: .8\n            },\n            \"ztMitrOzb-hover\": {\n              opacity: .5\n            },\n            \"ztMitrOzb-pressed\": {\n              opacity: .8\n            }\n          },\n          ...addPropertyOverrides({\n            \"RKoV4OAn4-hover\": {\n              __targetOpacity: .5,\n              \"data-framer-name\": undefined\n            },\n            \"RKoV4OAn4-pressed\": {\n              __targetOpacity: .8,\n              \"data-framer-name\": undefined\n            },\n            \"ztMitrOzb-hover\": {\n              __targetOpacity: .5,\n              \"data-framer-name\": undefined\n            },\n            \"ztMitrOzb-pressed\": {\n              __targetOpacity: .8,\n              \"data-framer-name\": undefined\n            },\n            RKoV4OAn4: {\n              \"data-framer-name\": \"Primary Small\"\n            }\n          }, baseVariant, gestureVariant),\n          children: /*#__PURE__*/_jsx(Text, {\n            __fromCanvasComponent: true,\n            className: \"framer-1v6o1o1\",\n            fonts: [\"GF;Lexend Zetta-800\"],\n            layoutDependency: layoutDependency,\n            layoutId: \"V195uEPQc\",\n            rawHTML: \"<span style='font-size: 0; line-height: 0; tab-size: 4; white-space: inherit; word-wrap: inherit'><span style='direction: ltr; font-size: 0'><span style=''>Download MAC APP</span><br></span></span>\",\n            style: {\n              \"--framer-font-family\": '\"Lexend Zetta\", sans-serif',\n              \"--framer-font-size\": \"16px\",\n              \"--framer-font-style\": \"normal\",\n              \"--framer-font-weight\": 800,\n              \"--framer-letter-spacing\": \"-1.7px\",\n              \"--framer-line-height\": \"1em\",\n              \"--framer-link-text-color\": \"rgb(0, 153, 255)\",\n              \"--framer-link-text-decoration\": \"underline\",\n              \"--framer-text-alignment\": \"start\",\n              \"--framer-text-color\": \"rgb(255, 255, 255)\",\n              \"--framer-text-decoration\": \"none\",\n              \"--framer-text-transform\": \"uppercase\",\n              textShadow: \"0px 0px 10px rgba(0,0,0,0.25)\"\n            },\n            text: EooxvsCSG,\n            variants: {\n              RKoV4OAn4: {\n                \"--framer-font-size\": \"13px\",\n                \"--framer-letter-spacing\": \"-1.5px\"\n              }\n            },\n            verticalAlignment: \"top\",\n            withExternalLayout: true\n          })\n        })\n      })\n    })\n  });\n});\nconst css = ['.framer-n6tT2 [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; }', \"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\", \".framer-n6tT2 .framer-rf7trf { display: block; }\", \".framer-n6tT2 .framer-159h240 { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: visible; padding: 30px 30px 30px 30px; position: relative; width: min-content; }\", \".framer-n6tT2 .framer-1v6o1o1 { flex: none; height: auto; overflow: visible; position: relative; white-space: pre; width: auto; }\", \".framer-n6tT2 .framer-v-159h240 .framer-159h240, .framer-n6tT2 .framer-v-1ihsh03 .framer-159h240 { cursor: pointer; }\", \"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-n6tT2 .framer-159h240 { gap: 0px; } .framer-n6tT2 .framer-159h240 > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-n6tT2 .framer-159h240 > :first-child { margin-left: 0px; } .framer-n6tT2 .framer-159h240 > :last-child { margin-right: 0px; } }\", \".framer-n6tT2.framer-v-1ihsh03 .framer-159h240 { padding: 20px 20px 20px 20px; }\"]; /**\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                * This is a generated Framer component.\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                * @framerIntrinsicHeight 76\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                * @framerIntrinsicWidth 288\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"]},\"RKoV4OAn4\":{\"layout\":[\"auto\",\"auto\"]},\"gqGk2GUI4\":{\"layout\":[\"auto\",\"auto\"]},\"UyTi7vugj\":{\"layout\":[\"auto\",\"auto\"]},\"eZuGp0EhO\":{\"layout\":[\"auto\",\"auto\"]},\"oZB0R3ODS\":{\"layout\":[\"auto\",\"auto\"]}}}\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                * @framerVariables {\"EooxvsCSG\":\"title\"}\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                */\nconst FramerAlm9w2AhY = withCSS(Component, css, \"framer-n6tT2\");\nexport default FramerAlm9w2AhY;\nFramerAlm9w2AhY.displayName = \"Button\";\nFramerAlm9w2AhY.defaultProps = {\n  height: 76,\n  width: 288\n};\naddPropertyControls(FramerAlm9w2AhY, {\n  variant: {\n    options: [\"ztMitrOzb\", \"RKoV4OAn4\"],\n    optionTitles: [\"Primary\", \"Primary Small\"],\n    title: \"Variant\",\n    type: ControlType.Enum\n  },\n  EooxvsCSG: {\n    defaultValue: \"Download MAC APP\",\n    displayTextArea: false,\n    title: \"Title\",\n    type: ControlType.String\n  }\n});\naddFonts(FramerAlm9w2AhY, [{\n  family: \"Lexend Zetta\",\n  moduleAsset: {\n    localModuleIdentifier: \"local-module:canvasComponent/Alm9w2AhY:default\",\n    url: \"https://fonts.gstatic.com/s/lexendzetta/v28/ll8uK2KYXje7CdOFnEWcU8synQbuVYjYB3BCy1bB0z5jbs8qbts.ttf\"\n  },\n  style: \"normal\",\n  url: \"https://fonts.gstatic.com/s/lexendzetta/v28/ll8uK2KYXje7CdOFnEWcU8synQbuVYjYB3BCy1bB0z5jbs8qbts.ttf\",\n  weight: \"800\"\n}]);\nexport const __FramerMetadata__ = {\n  \"exports\": {\n    \"default\": {\n      \"type\": \"reactComponent\",\n      \"name\": \"FramerAlm9w2AhY\",\n      \"slots\": [],\n      \"annotations\": {\n        \"framerContractVersion\": \"1\",\n        \"framerIntrinsicWidth\": \"288\",\n        \"framerIntrinsicHeight\": \"76\",\n        \"framerCanvasComponentVariantDetails\": \"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"RKoV4OAn4\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"gqGk2GUI4\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"UyTi7vugj\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"eZuGp0EhO\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"oZB0R3ODS\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]}}}\",\n        \"framerVariables\": \"{\\\"EooxvsCSG\\\":\\\"title\\\"}\"\n      }\n    },\n    \"Props\": {\n      \"type\": \"tsType\",\n      \"annotations\": {\n        \"framerContractVersion\": \"1\"\n      }\n    },\n    \"__FramerMetadata__\": {\n      \"type\": \"variable\"\n    }\n  }\n};\n//# sourceMappingURL=./Alm9w2AhY.map", "// Generated by Framer (a5a1a51)\nimport { jsx as _jsx, jsxs as _jsxs } from \"react/jsx-runtime\";\nimport { addFonts, addPropertyControls, ControlType, cx, useActiveVariantCallback, useOnVariantChange, useVariantState, withCSS } from \"framer\";\nimport { LayoutGroup, motion, MotionConfigContext } from \"framer-motion\";\nimport * as React from \"react\";\nconst cycleOrder = [\"GCCAzZyX7\", \"jvIi4DET4\"];\nconst variantClassNames = {\n  GCCAzZyX7: \"framer-v-1eo07ca\",\n  jvIi4DET4: \"framer-v-ii17aj\"\n};\nfunction addPropertyOverrides(overrides, ...variants) {\n  const nextOverrides = {};\n  variants === null || variants === void 0 ? void 0 : variants.forEach(variant => variant && Object.assign(nextOverrides, overrides[variant]));\n  return nextOverrides;\n}\nconst humanReadableVariantMap = {\n  \"Variant 1\": \"GCCAzZyX7\",\n  \"Variant 2\": \"jvIi4DET4\"\n};\nconst transitions = {\n  default: {\n    delay: 0,\n    duration: .2,\n    ease: [0, 0, 1, 1],\n    type: \"tween\"\n  },\n  jvIi4DET4: {\n    delay: 0,\n    duration: 120,\n    ease: [0, 0, 1, 1],\n    type: \"tween\"\n  }\n};\nconst transformTemplate = (_, t) => `translate(-50%, -50%) ${t}`;\nconst Transition = ({\n  value,\n  children\n}) => {\n  const config = React.useContext(MotionConfigContext);\n  const transition = value !== null && value !== void 0 ? value : config.transition;\n  const contextValue = React.useMemo(() => ({\n    ...config,\n    transition\n  }), [JSON.stringify(transition)]);\n  return /*#__PURE__*/_jsx(MotionConfigContext.Provider, {\n    value: contextValue,\n    children: children\n  });\n};\nconst Component = /*#__PURE__*/React.forwardRef(function ({\n  id,\n  style,\n  className,\n  width,\n  height,\n  layoutId,\n  variant: outerVariant = \"GCCAzZyX7\",\n  ...restProps\n}, ref) {\n  const outerVariantId = humanReadableVariantMap[outerVariant];\n  const variant = outerVariantId || outerVariant;\n  const {\n    baseVariant,\n    classNames,\n    gestureVariant,\n    setGestureState,\n    setVariant,\n    transition,\n    variants\n  } = useVariantState({\n    cycleOrder,\n    defaultVariant: \"GCCAzZyX7\",\n    transitions,\n    variant,\n    variantClassNames\n  });\n  const layoutDependency = variants.join(\"-\") + restProps.layoutDependency;\n  const {\n    activeVariantCallback,\n    delay\n  } = useActiveVariantCallback(baseVariant);\n  const onAppear4p5abf = activeVariantCallback(async (...args) => {\n    setVariant(\"jvIi4DET4\");\n  });\n  const onAppearqykmbk = activeVariantCallback(async (...args) => {\n    await delay(() => setVariant(\"GCCAzZyX7\"), 122e3);\n  });\n  useOnVariantChange(baseVariant, {\n    default: onAppear4p5abf,\n    jvIi4DET4: onAppearqykmbk\n  });\n  const defaultLayoutId = React.useId();\n  return /*#__PURE__*/_jsx(LayoutGroup, {\n    id: layoutId !== null && layoutId !== void 0 ? layoutId : defaultLayoutId,\n    children: /*#__PURE__*/_jsx(motion.div, {\n      initial: variant,\n      animate: variants,\n      onHoverStart: () => setGestureState({\n        isHovered: true\n      }),\n      onHoverEnd: () => setGestureState({\n        isHovered: false\n      }),\n      onTapStart: () => setGestureState({\n        isPressed: true\n      }),\n      onTap: () => setGestureState({\n        isPressed: false\n      }),\n      onTapCancel: () => setGestureState({\n        isPressed: false\n      }),\n      className: cx(\"framer-gaKUb\", classNames),\n      style: {\n        display: \"contents\"\n      },\n      children: /*#__PURE__*/_jsx(Transition, {\n        value: transition,\n        children: /*#__PURE__*/_jsxs(motion.div, {\n          ...restProps,\n          className: cx(\"framer-1eo07ca\", className),\n          \"data-framer-name\": \"Variant 1\",\n          \"data-highlight\": true,\n          layoutDependency: layoutDependency,\n          layoutId: \"GCCAzZyX7\",\n          ref: ref,\n          style: {\n            ...style\n          },\n          ...addPropertyOverrides({\n            jvIi4DET4: {\n              \"data-framer-name\": \"Variant 2\"\n            }\n          }, baseVariant, gestureVariant),\n          children: [/*#__PURE__*/_jsx(motion.div, {\n            className: \"framer-1ne5hsi\",\n            layoutDependency: layoutDependency,\n            layoutId: \"n_dhIaryl\",\n            style: {\n              backgroundColor: \"rgba(68, 68, 68, 0.3)\",\n              borderBottomLeftRadius: 6,\n              borderBottomRightRadius: 6,\n              borderTopLeftRadius: 6,\n              borderTopRightRadius: 6\n            },\n            transformTemplate: transformTemplate,\n            children: /*#__PURE__*/_jsxs(motion.div, {\n              className: \"framer-12zt6kw\",\n              layoutDependency: layoutDependency,\n              layoutId: \"jnS7L2_MR\",\n              children: [/*#__PURE__*/_jsx(motion.div, {\n                className: \"framer-15y856x\",\n                layoutDependency: layoutDependency,\n                layoutId: \"XdgT4rQmB\",\n                style: {\n                  background: \"linear-gradient(180deg, hsl(0, 0%, 100%) 0%, rgba(255, 255, 255, 0.6) 100%)\",\n                  borderBottomLeftRadius: 4,\n                  borderBottomRightRadius: 4,\n                  borderTopLeftRadius: 4,\n                  borderTopRightRadius: 4,\n                  boxShadow: \"0px 0px 8px 0px rgba(0, 0, 0, 0.1)\",\n                  opacity: .15\n                }\n              }), /*#__PURE__*/_jsx(motion.div, {\n                className: \"framer-1ktldhs\",\n                layoutDependency: layoutDependency,\n                layoutId: \"n9ut6K8Ui\",\n                style: {\n                  background: \"linear-gradient(180deg, hsl(0, 0%, 100%) 0%, rgba(255, 255, 255, 0.6) 100%)\",\n                  borderBottomLeftRadius: 4,\n                  borderBottomRightRadius: 4,\n                  borderTopLeftRadius: 4,\n                  borderTopRightRadius: 4,\n                  boxShadow: \"0px 0px 8px 0px rgba(0, 0, 0, 0.1)\",\n                  opacity: .1\n                }\n              }), /*#__PURE__*/_jsx(motion.div, {\n                className: \"framer-d3unaa\",\n                layoutDependency: layoutDependency,\n                layoutId: \"hoFJbtz4o\",\n                style: {\n                  background: \"linear-gradient(180deg, hsl(0, 0%, 100%) 0%, rgba(255, 255, 255, 0.6) 100%)\",\n                  borderBottomLeftRadius: 4,\n                  borderBottomRightRadius: 4,\n                  borderTopLeftRadius: 4,\n                  borderTopRightRadius: 4,\n                  boxShadow: \"0px 0px 8px 0px rgba(0, 0, 0, 0.1)\",\n                  opacity: .3\n                }\n              }), /*#__PURE__*/_jsx(motion.div, {\n                className: \"framer-laycwk\",\n                layoutDependency: layoutDependency,\n                layoutId: \"W24xzFwnY\",\n                style: {\n                  background: \"linear-gradient(180deg, hsl(0, 0%, 100%) 0%, rgba(255, 255, 255, 0.6) 100%)\",\n                  borderBottomLeftRadius: 4,\n                  borderBottomRightRadius: 4,\n                  borderTopLeftRadius: 4,\n                  borderTopRightRadius: 4,\n                  boxShadow: \"0px 0px 8px 0px rgba(0, 0, 0, 0.1)\",\n                  opacity: .2\n                }\n              }), /*#__PURE__*/_jsx(motion.div, {\n                className: \"framer-mly6fu\",\n                layoutDependency: layoutDependency,\n                layoutId: \"AJDoiBzTF\",\n                style: {\n                  background: \"linear-gradient(180deg, hsl(0, 0%, 100%) 0%, rgba(255, 255, 255, 0.6) 100%)\",\n                  borderBottomLeftRadius: 4,\n                  borderBottomRightRadius: 4,\n                  borderTopLeftRadius: 4,\n                  borderTopRightRadius: 4,\n                  boxShadow: \"0px 0px 8px 0px rgba(0, 0, 0, 0.1)\",\n                  opacity: .1\n                }\n              })]\n            })\n          }), /*#__PURE__*/_jsxs(motion.div, {\n            className: \"framer-i4jbj0\",\n            layoutDependency: layoutDependency,\n            layoutId: \"hDFOVQIl2\",\n            children: [/*#__PURE__*/_jsx(motion.div, {\n              className: \"framer-1jfm88e\",\n              layoutDependency: layoutDependency,\n              layoutId: \"Igm_KGeJY\",\n              style: {\n                background: \"linear-gradient(180deg, hsl(276, 73%, 51%) 0%, #de278c 100%)\",\n                borderBottomLeftRadius: 1,\n                borderBottomRightRadius: 1,\n                borderTopLeftRadius: 1,\n                borderTopRightRadius: 1,\n                boxShadow: \"0px -2px 8px 0px rgba(0, 0, 0, 0.5)\"\n              }\n            }), /*#__PURE__*/_jsx(motion.div, {\n              className: \"framer-1njt44f\",\n              layoutDependency: layoutDependency,\n              layoutId: \"MVADRgInP\",\n              style: {\n                backgroundColor: \"rgb(222, 39, 140)\",\n                borderBottomLeftRadius: 3,\n                borderBottomRightRadius: 3,\n                borderTopLeftRadius: 3,\n                borderTopRightRadius: 3\n              }\n            })]\n          })]\n        })\n      })\n    })\n  });\n});\nconst css = ['.framer-gaKUb [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; }', \"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\", \".framer-gaKUb .framer-7wj3vt { display: block; }\", \".framer-gaKUb .framer-1eo07ca { height: 50px; overflow: visible; position: relative; width: 764px; }\", \".framer-gaKUb .framer-1ne5hsi { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; left: 50%; overflow: visible; padding: 10px 10px 10px 10px; position: absolute; top: 50%; width: 760px; }\", \".framer-gaKUb .framer-12zt6kw { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px 0px 0px 0px; position: relative; width: 100%; }\", \".framer-gaKUb .framer-15y856x { flex: none; height: 31px; overflow: visible; position: relative; width: 100px; }\", \".framer-gaKUb .framer-1ktldhs { flex: 2 0 0px; height: 31px; overflow: visible; position: relative; width: 1px; }\", \".framer-gaKUb .framer-d3unaa { flex: 1 0 0px; height: 31px; overflow: visible; position: relative; width: 1px; }\", \".framer-gaKUb .framer-laycwk { flex: none; height: 31px; overflow: visible; position: relative; width: 30px; }\", \".framer-gaKUb .framer-mly6fu { flex: 4 0 0px; height: 31px; overflow: visible; position: relative; width: 1px; }\", \".framer-gaKUb .framer-i4jbj0 { bottom: -2px; flex: none; left: 12px; overflow: visible; position: absolute; top: 0px; width: 5px; }\", \".framer-gaKUb .framer-1jfm88e { flex: none; height: 104%; left: 1px; overflow: visible; position: absolute; top: -3px; width: 2px; }\", \".framer-gaKUb .framer-1njt44f { aspect-ratio: 1 / 1; bottom: -6px; flex: none; height: var(--framer-aspect-ratio-supported, 8px); left: -2px; overflow: visible; position: absolute; right: -1px; }\", \"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-gaKUb .framer-1ne5hsi, .framer-gaKUb .framer-12zt6kw { gap: 0px; } .framer-gaKUb .framer-1ne5hsi > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-gaKUb .framer-1ne5hsi > :first-child { margin-top: 0px; } .framer-gaKUb .framer-1ne5hsi > :last-child { margin-bottom: 0px; } .framer-gaKUb .framer-12zt6kw > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-gaKUb .framer-12zt6kw > :first-child { margin-left: 0px; } .framer-gaKUb .framer-12zt6kw > :last-child { margin-right: 0px; } }\", \".framer-gaKUb.framer-v-ii17aj .framer-i4jbj0 { left: unset; right: 10px; }\"]; /**\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     * This is a generated Framer component.\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     * @framerIntrinsicHeight 50\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     * @framerIntrinsicWidth 764\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"jvIi4DET4\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     */\nconst FramerTTnvgKCS3 = withCSS(Component, css, \"framer-gaKUb\");\nexport default FramerTTnvgKCS3;\nFramerTTnvgKCS3.displayName = \"Timeline\";\nFramerTTnvgKCS3.defaultProps = {\n  height: 50,\n  width: 764\n};\naddPropertyControls(FramerTTnvgKCS3, {\n  variant: {\n    options: [\"GCCAzZyX7\", \"jvIi4DET4\"],\n    optionTitles: [\"Variant 1\", \"Variant 2\"],\n    title: \"Variant\",\n    type: ControlType.Enum\n  }\n});\naddFonts(FramerTTnvgKCS3, []);\nexport const __FramerMetadata__ = {\n  \"exports\": {\n    \"default\": {\n      \"type\": \"reactComponent\",\n      \"name\": \"FramerTTnvgKCS3\",\n      \"slots\": [],\n      \"annotations\": {\n        \"framerContractVersion\": \"1\",\n        \"framerIntrinsicHeight\": \"50\",\n        \"framerCanvasComponentVariantDetails\": \"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"jvIi4DET4\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\n        \"framerIntrinsicWidth\": \"764\"\n      }\n    },\n    \"Props\": {\n      \"type\": \"tsType\",\n      \"annotations\": {\n        \"framerContractVersion\": \"1\"\n      }\n    },\n    \"__FramerMetadata__\": {\n      \"type\": \"variable\"\n    }\n  }\n};\n//# sourceMappingURL=./TTnvgKCS3.map", "// Generated by Framer (a5a1a51)\nimport { jsx as _jsx, jsxs as _jsxs } from \"react/jsx-runtime\";\nimport { addFonts, Container, cx, GeneratedComponentContext, getFonts, Image, optimizeAppear, optimizeAppearTransformTemplate, PropertyOverrides, removeHiddenBreakpointLayers, RichText, SVG, Text, useHydratedBreakpointVariants, withCSS, withFX } from \"framer\";\nimport { LayoutGroup, motion } from \"framer-motion\";\nimport * as React from \"react\";\nimport { Video as Video1 } from \"https://framerusercontent.com/modules/aokp9DDPTWaRLrvhFlr7/TOPzYi8C28I7KdesjP2s/Video.js\";\nimport { Video } from \"https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/QaqrlAraQyqzLNiThK8G/VideoNew.js\";\nimport { Icon as Phosphor } from \"https://framerusercontent.com/modules/tYScH7LTqUtz5KUaUAYP/PHaFTtd03PsDa8045nJF/Phosphor.js\";\nimport Button from \"https://framerusercontent.com/modules/GFir7xY7PdgUQIcujyq2/H920XSJwTxIlBfcSKvGB/Alm9w2AhY.js\";\nimport Timeline from \"https://framerusercontent.com/modules/djrbkFZfohzr8Zw2Vycs/LNxkeqWsNyEwbWEwDMtu/TTnvgKCS3.js\";\nimport metadataProvider from \"https://framerusercontent.com/modules/jtCDve3lri7iMEt6KvxZ/uqDzcuy8MdIZKTWuZDCK/augiA20Il.js\";\nconst ImageWithFX = withFX(Image);\nconst PhosphorFonts = getFonts(Phosphor);\nconst VideoFonts = getFonts(Video);\nconst TimelineFonts = getFonts(Timeline);\nconst MotionDivWithFX = withFX(motion.div);\nconst RichTextWithFX = withFX(RichText);\nconst ButtonFonts = getFonts(Button);\nconst ContainerWithFX = withFX(Container);\nconst SVGWithFX = withFX(SVG);\nconst TextWithFX = withFX(Text);\nconst Video1Fonts = getFonts(Video1);\nconst cycleOrder = [\"WQLkyLRf1\", \"VnBUqqa0X\", \"xfAg9_bOj\"];\nconst breakpoints = {\n  VnBUqqa0X: \"(min-width: 810px) and (max-width: 1399px)\",\n  WQLkyLRf1: \"(min-width: 1400px)\",\n  xfAg9_bOj: \"(max-width: 809px)\"\n};\nconst isBrowser = () => typeof document !== \"undefined\";\nconst variantClassNames = {\n  VnBUqqa0X: \"framer-v-11yik1p\",\n  WQLkyLRf1: \"framer-v-72rtr7\",\n  xfAg9_bOj: \"framer-v-1mar9c3\"\n};\nif (isBrowser()) {\n  removeHiddenBreakpointLayers(\"WQLkyLRf1\", breakpoints, variantClassNames);\n}\nconst humanReadableVariantMap = {\n  Desktop: \"WQLkyLRf1\",\n  Phone: \"xfAg9_bOj\",\n  Tablet: \"VnBUqqa0X\"\n};\nconst transitions = {\n  default: {\n    duration: 0\n  }\n};\nconst animation = {\n  opacity: 0,\n  rotate: 0,\n  rotateX: 0,\n  rotateY: 0,\n  scale: 0,\n  x: 0,\n  y: 0\n};\nconst transition1 = {\n  delay: 0,\n  duration: 1.5,\n  ease: [0, 0, 1, 1],\n  type: \"tween\"\n};\nconst animation1 = {\n  opacity: 0,\n  rotate: 0,\n  rotateX: 0,\n  rotateY: 0,\n  scale: 0,\n  transition: transition1,\n  x: 0,\n  y: 0\n};\nconst transformTemplate = (_, t) => `translateX(-50%) ${t}`;\nconst transition2 = {\n  damping: 60,\n  delay: 1.2,\n  mass: 3.6,\n  stiffness: 500,\n  type: \"spring\"\n};\nconst animation2 = {\n  opacity: 1,\n  rotate: 0,\n  rotateX: 0,\n  rotateY: 0,\n  scale: 1,\n  transition: transition2,\n  x: 0,\n  y: 0\n};\nconst animation3 = {\n  opacity: .001,\n  rotate: 0,\n  rotateX: 0,\n  rotateY: 0,\n  scale: 1,\n  x: 0,\n  y: 100\n};\nconst transition3 = {\n  damping: 60,\n  delay: 1.1,\n  mass: 4.2,\n  stiffness: 500,\n  type: \"spring\"\n};\nconst animation4 = {\n  opacity: 1,\n  rotate: 0,\n  rotateX: 0,\n  rotateY: 0,\n  scale: 1,\n  transition: transition3,\n  x: 0,\n  y: 0\n};\nconst animation5 = {\n  opacity: 1,\n  rotate: 0,\n  rotateX: 0,\n  rotateY: 0,\n  scale: 1,\n  x: 0,\n  y: 100\n};\nconst transformTemplate1 = (_, t) => `translate(-50%, -50%) ${t}`;\nconst animation6 = {\n  opacity: .001,\n  rotate: 0,\n  rotateX: 0,\n  rotateY: 0,\n  scale: 1,\n  x: 0,\n  y: 0\n};\nconst animation7 = {\n  opacity: 0,\n  rotate: 0,\n  rotateX: 0,\n  rotateY: 0,\n  scale: 1,\n  x: 80,\n  y: 40\n};\nconst transition4 = {\n  damping: 60,\n  delay: 1.3,\n  mass: 2.8,\n  stiffness: 500,\n  type: \"spring\"\n};\nconst animation8 = {\n  opacity: 0,\n  rotate: 0,\n  rotateX: 0,\n  rotateY: 0,\n  scale: 1,\n  transition: transition4,\n  x: 80,\n  y: 40\n};\nconst transformTemplate2 = (_, t) => `${t} rotate(-2deg)`;\nconst animation9 = {\n  opacity: 0,\n  rotate: 0,\n  rotateX: 0,\n  rotateY: 0,\n  scale: 1,\n  x: -80,\n  y: 40\n};\nconst transition5 = {\n  damping: 60,\n  delay: 1.4,\n  mass: 3.3,\n  stiffness: 500,\n  type: \"spring\"\n};\nconst animation10 = {\n  opacity: 0,\n  rotate: 0,\n  rotateX: 0,\n  rotateY: 0,\n  scale: 1,\n  transition: transition5,\n  x: -80,\n  y: 40\n};\nconst transformTemplate3 = (_, t) => `translateY(-50%) ${t} rotate(2deg)`;\nconst transformTemplate4 = (_, t) => `translate(-50%, -50%) ${t} rotate(-1deg)`;\nconst animation11 = {\n  opacity: 0,\n  rotate: 0,\n  rotateX: 0,\n  rotateY: 0,\n  scale: 1,\n  x: 0,\n  y: 100\n};\nconst transition6 = {\n  damping: 60,\n  delay: 0,\n  mass: 3.6,\n  stiffness: 500,\n  type: \"spring\"\n};\nconst animation12 = {\n  opacity: 0,\n  rotate: 0,\n  rotateX: 0,\n  rotateY: 0,\n  scale: 1,\n  transition: transition6,\n  x: 0,\n  y: 100\n};\nconst transition7 = {\n  damping: 60,\n  delay: .1,\n  mass: 3.6,\n  stiffness: 500,\n  type: \"spring\"\n};\nconst animation13 = {\n  opacity: 0,\n  rotate: 0,\n  rotateX: 0,\n  rotateY: 0,\n  scale: 1,\n  transition: transition7,\n  x: 0,\n  y: 100\n};\nconst transition8 = {\n  damping: 60,\n  delay: .2,\n  mass: 3.6,\n  stiffness: 500,\n  type: \"spring\"\n};\nconst animation14 = {\n  opacity: 0,\n  rotate: 0,\n  rotateX: 0,\n  rotateY: 0,\n  scale: 1,\n  transition: transition8,\n  x: 0,\n  y: 100\n};\nconst transition9 = {\n  damping: 60,\n  delay: .3,\n  mass: 3.6,\n  stiffness: 500,\n  type: \"spring\"\n};\nconst animation15 = {\n  opacity: 0,\n  rotate: 0,\n  rotateX: 0,\n  rotateY: 0,\n  scale: 1,\n  transition: transition9,\n  x: 0,\n  y: 100\n};\nconst transition10 = {\n  damping: 60,\n  delay: .4,\n  mass: 3.6,\n  stiffness: 500,\n  type: \"spring\"\n};\nconst animation16 = {\n  opacity: 0,\n  rotate: 0,\n  rotateX: 0,\n  rotateY: 0,\n  scale: 1,\n  transition: transition10,\n  x: 0,\n  y: 100\n};\nconst animation17 = {\n  opacity: 0,\n  rotate: 0,\n  rotateX: 0,\n  rotateY: 0,\n  scale: .8,\n  x: 0,\n  y: 40\n};\nconst animation18 = {\n  opacity: 0,\n  rotate: 0,\n  rotateX: 0,\n  rotateY: 0,\n  scale: .8,\n  transition: transition9,\n  x: 0,\n  y: 40\n};\nconst transformTemplate5 = (_, t) => `translate(-50%, -50%) ${t} rotate(2deg)`;\nconst animation19 = {\n  opacity: 0,\n  rotate: 0,\n  rotateX: 0,\n  rotateY: 0,\n  scale: .8,\n  transition: transition10,\n  x: 0,\n  y: 40\n};\nconst transformTemplate6 = (_, t) => `${t} rotate(2deg)`;\nconst transition11 = {\n  damping: 60,\n  delay: .5,\n  mass: 6.1,\n  stiffness: 727,\n  type: \"spring\"\n};\nconst animation20 = {\n  opacity: 0,\n  rotate: 0,\n  rotateX: 0,\n  rotateY: 0,\n  scale: 0,\n  transition: transition11,\n  x: 0,\n  y: 0\n};\nconst transition12 = {\n  damping: 60,\n  delay: .6,\n  mass: 6.1,\n  stiffness: 727,\n  type: \"spring\"\n};\nconst animation21 = {\n  opacity: 0,\n  rotate: 0,\n  rotateX: 0,\n  rotateY: 0,\n  scale: 0,\n  transition: transition12,\n  x: 0,\n  y: 0\n};\nconst transition13 = {\n  damping: 60,\n  delay: .7,\n  mass: 6.1,\n  stiffness: 727,\n  type: \"spring\"\n};\nconst animation22 = {\n  opacity: 0,\n  rotate: 0,\n  rotateX: 0,\n  rotateY: 0,\n  scale: 0,\n  transition: transition13,\n  x: 0,\n  y: 0\n};\nconst animation23 = {\n  opacity: 0,\n  rotate: 0,\n  rotateX: 0,\n  rotateY: 0,\n  scale: 1,\n  x: 0,\n  y: 200\n};\nconst transition14 = {\n  delay: 0,\n  duration: 1,\n  ease: [.12, .23, .5, 1],\n  type: \"tween\"\n};\nconst animation24 = {\n  opacity: 0,\n  rotate: 0,\n  rotateX: 0,\n  rotateY: 0,\n  scale: 1,\n  transition: transition14,\n  x: 0,\n  y: 200\n};\nconst animation25 = {\n  opacity: 0,\n  rotate: 0,\n  rotateX: 0,\n  rotateY: 0,\n  scale: 1,\n  x: 0,\n  y: -20\n};\nconst transition15 = {\n  delay: 0,\n  duration: 2,\n  ease: [0, .7, .6, 1],\n  type: \"tween\"\n};\nconst animation26 = {\n  opacity: 0,\n  rotate: 0,\n  rotateX: 0,\n  rotateY: 0,\n  scale: 1,\n  transition: transition15,\n  x: 0,\n  y: -20\n};\nconst transition16 = {\n  delay: .1,\n  duration: 2,\n  ease: [0, .7, .6, 1],\n  type: \"tween\"\n};\nconst animation27 = {\n  opacity: 0,\n  rotate: 0,\n  rotateX: 0,\n  rotateY: 0,\n  scale: 1,\n  transition: transition16,\n  x: 0,\n  y: -20\n};\nconst metadata = metadataProvider();\nconst Component = /*#__PURE__*/React.forwardRef(function ({\n  id,\n  style,\n  className,\n  width,\n  height,\n  layoutId,\n  variant: outerVariant = \"WQLkyLRf1\",\n  ...restProps\n}, ref) {\n  const outerVariantId = humanReadableVariantMap[outerVariant];\n  const variant = outerVariantId || outerVariant;\n  React.useLayoutEffect(() => {\n    const metadata1 = metadataProvider();\n    document.title = metadata1.title || \"\";\n    if (metadata1.viewport) {\n      var ref;\n      (ref = document.querySelector('meta[name=\"viewport\"]')) === null || ref === void 0 ? void 0 : ref.setAttribute(\"content\", metadata1.viewport);\n    }\n    if (metadata1.bodyClassName) {\n      Array.from(document.body.classList).filter(c => c.startsWith(\"framer-body-\")).map(c => document.body.classList.remove(c));\n      document.body.classList.add(metadata1.bodyClassName);\n    }\n  }, []);\n  const [baseVariant, hydratedBaseVariant] = useHydratedBreakpointVariants(variant, breakpoints, false);\n  const gestureVariant = undefined;\n  const transition = transitions.default;\n  const isDisplayed = () => {\n    if (baseVariant === \"xfAg9_bOj\") return true;\n    return !isBrowser();\n  };\n  const isDisplayed1 = () => {\n    if (baseVariant === \"xfAg9_bOj\") return !isBrowser();\n    return true;\n  };\n  const isDisplayed2 = () => {\n    if ([\"VnBUqqa0X\", \"xfAg9_bOj\"].includes(baseVariant)) return !isBrowser();\n    return true;\n  };\n  const isDisplayed3 = () => {\n    if ([\"VnBUqqa0X\", \"xfAg9_bOj\"].includes(baseVariant)) return true;\n    return !isBrowser();\n  };\n  const defaultLayoutId = React.useId();\n  return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider, {\n    value: {\n      primaryVariantId: \"WQLkyLRf1\",\n      variantClassNames\n    },\n    children: /*#__PURE__*/_jsx(LayoutGroup, {\n      id: layoutId !== null && layoutId !== void 0 ? layoutId : defaultLayoutId,\n      children: /*#__PURE__*/_jsxs(motion.div, {\n        className: cx(\"framer-2bPDZ\"),\n        style: {\n          display: \"contents\"\n        },\n        children: [/*#__PURE__*/_jsxs(motion.div, {\n          ...restProps,\n          className: cx(\"framer-72rtr7\", className),\n          ref: ref,\n          style: {\n            ...style\n          },\n          children: [/*#__PURE__*/_jsxs(motion.div, {\n            className: \"framer-14o012c\",\n            children: [/*#__PURE__*/_jsx(ImageWithFX, {\n              __framer__animate: {\n                transition: transition1\n              },\n              __framer__animateOnce: true,\n              __framer__enter: animation,\n              __framer__exit: animation1,\n              __framer__styleAppearEffectEnabled: true,\n              __framer__threshold: .5,\n              __perspectiveFX: false,\n              __targetOpacity: 1,\n              background: {\n                alt: \"\",\n                fit: \"fill\",\n                intrinsicHeight: 1960,\n                intrinsicWidth: 2800,\n                pixelHeight: 1960,\n                pixelWidth: 2800,\n                sizes: \"1400px\",\n                src: new URL(\"https://framerusercontent.com/images/e0qdwrFCVC0scahkiKIYDws7r1w.jpg\").href,\n                srcSet: `${new URL(\"https://framerusercontent.com/images/e0qdwrFCVC0scahkiKIYDws7r1w.jpg?scale-down-to=512\").href} 512w, ${new URL(\"https://framerusercontent.com/images/e0qdwrFCVC0scahkiKIYDws7r1w.jpg?scale-down-to=1024\").href} 1024w, ${new URL(\"https://framerusercontent.com/images/e0qdwrFCVC0scahkiKIYDws7r1w.jpg?scale-down-to=2048\").href} 2048w, ${new URL(\"https://framerusercontent.com/images/e0qdwrFCVC0scahkiKIYDws7r1w.jpg\").href} 2800w`\n              },\n              className: \"framer-1tdgphz\",\n              \"data-framer-name\": \"Spotlight\",\n              name: \"Spotlight\"\n            }), /*#__PURE__*/_jsx(PropertyOverrides, {\n              breakpoint: baseVariant,\n              overrides: {\n                xfAg9_bOj: {\n                  transformTemplate\n                }\n              },\n              children: /*#__PURE__*/_jsxs(motion.div, {\n                className: \"framer-1k74cr9\",\n                \"data-framer-name\": \"Content\",\n                name: \"Content\",\n                children: [/*#__PURE__*/_jsx(PropertyOverrides, {\n                  breakpoint: baseVariant,\n                  overrides: {\n                    VnBUqqa0X: {\n                      \"data-framer-appear-id\": \"etltp6\",\n                      animate: optimizeAppear(\"animate\", \"etltp6\", animation2, \"11yik1p\"),\n                      initial: optimizeAppear(\"initial\", \"etltp6\", animation3, \"11yik1p\")\n                    },\n                    xfAg9_bOj: {\n                      \"data-framer-appear-id\": \"1c78hj5\",\n                      animate: optimizeAppear(\"animate\", \"1c78hj5\", animation2, \"1mar9c3\"),\n                      initial: optimizeAppear(\"initial\", \"1c78hj5\", animation3, \"1mar9c3\")\n                    }\n                  },\n                  children: /*#__PURE__*/_jsxs(motion.div, {\n                    animate: optimizeAppear(\"animate\", \"19ddlv5\", animation2, \"72rtr7\"),\n                    className: \"framer-19ddlv5\",\n                    \"data-framer-appear-id\": \"19ddlv5\",\n                    \"data-framer-name\": \"Logo\",\n                    initial: optimizeAppear(\"initial\", \"19ddlv5\", animation3, \"72rtr7\"),\n                    name: \"Logo\",\n                    children: [/*#__PURE__*/_jsx(Container, {\n                      className: \"framer-1wwbjck-container\",\n                      children: /*#__PURE__*/_jsx(Phosphor, {\n                        color: \"rgb(255, 255, 255)\",\n                        height: \"100%\",\n                        iconSearch: \"House\",\n                        iconSelection: \"Aperture\",\n                        id: \"k8Pbcie4A\",\n                        layoutId: \"k8Pbcie4A\",\n                        mirrored: false,\n                        selectByList: true,\n                        style: {\n                          height: \"100%\",\n                          width: \"100%\"\n                        },\n                        weight: \"duotone\",\n                        width: \"100%\"\n                      })\n                    }), /*#__PURE__*/_jsx(Text, {\n                      __fromCanvasComponent: true,\n                      className: \"framer-19ksbqt\",\n                      fonts: [\"GF;Lexend Zetta-800\"],\n                      rawHTML: \"<span style='font-size: 0; line-height: 0; tab-size: 4; white-space: inherit; word-wrap: inherit'><span style='direction: ltr; font-size: 0'><span style=''>APERTURE</span><br></span></span>\",\n                      verticalAlignment: \"top\",\n                      withExternalLayout: true\n                    })]\n                  })\n                }), /*#__PURE__*/_jsx(PropertyOverrides, {\n                  breakpoint: baseVariant,\n                  overrides: {\n                    VnBUqqa0X: {\n                      \"data-framer-appear-id\": \"rn8kwh\",\n                      animate: optimizeAppear(\"animate\", \"rn8kwh\", animation4, \"11yik1p\"),\n                      initial: optimizeAppear(\"initial\", \"rn8kwh\", animation5, \"11yik1p\")\n                    },\n                    xfAg9_bOj: {\n                      \"data-framer-appear-id\": \"d3k6s0\",\n                      animate: optimizeAppear(\"animate\", \"d3k6s0\", animation4, \"1mar9c3\"),\n                      initial: optimizeAppear(\"initial\", \"d3k6s0\", animation5, \"1mar9c3\")\n                    }\n                  },\n                  children: /*#__PURE__*/_jsxs(motion.div, {\n                    animate: optimizeAppear(\"animate\", \"mgmat7\", animation4, \"72rtr7\"),\n                    className: \"framer-mgmat7\",\n                    \"data-framer-appear-id\": \"mgmat7\",\n                    initial: optimizeAppear(\"initial\", \"mgmat7\", animation5, \"72rtr7\"),\n                    children: [/*#__PURE__*/_jsx(Text, {\n                      __fromCanvasComponent: true,\n                      alignment: \"center\",\n                      className: \"framer-148vyet\",\n                      fonts: [\"GF;Lexend Mega-800\"],\n                      rawHTML: \"<span style='font-size: 0; line-height: 0; tab-size: 4; white-space: inherit; word-wrap: inherit'><span style='direction: ltr; font-size: 0'><span style=''>A camera </span><br></span><span style='direction: ltr; font-size: 0'><span style=''>upgrade.</span><br></span></span>\",\n                      transformTemplate: transformTemplate1,\n                      verticalAlignment: \"top\",\n                      withExternalLayout: true\n                    }), /*#__PURE__*/_jsx(PropertyOverrides, {\n                      breakpoint: baseVariant,\n                      overrides: {\n                        VnBUqqa0X: {\n                          \"data-framer-appear-id\": \"j0uvtj\",\n                          animate: optimizeAppear(\"animate\", \"j0uvtj\", animation4, \"11yik1p\"),\n                          initial: optimizeAppear(\"initial\", \"j0uvtj\", animation6, \"11yik1p\")\n                        },\n                        xfAg9_bOj: {\n                          \"data-framer-appear-id\": \"c4fdbf\",\n                          animate: optimizeAppear(\"animate\", \"c4fdbf\", animation4, \"1mar9c3\"),\n                          children: /*#__PURE__*/_jsxs(React.Fragment, {\n                            children: [/*#__PURE__*/_jsx(\"p\", {\n                              style: {\n                                \"--font-selector\": \"R0Y7TGV4ZW5kIE1lZ2EtODAw\",\n                                \"--framer-font-family\": '\"Lexend Mega\", sans-serif',\n                                \"--framer-font-size\": \"58px\",\n                                \"--framer-font-weight\": \"800\",\n                                \"--framer-letter-spacing\": \"-9px\",\n                                \"--framer-line-height\": \"1em\",\n                                \"--framer-text-alignment\": \"center\",\n                                \"--framer-text-color\": \"rgb(255, 255, 255)\"\n                              },\n                              children: \"A camera \"\n                            }), /*#__PURE__*/_jsx(\"p\", {\n                              style: {\n                                \"--font-selector\": \"R0Y7TGV4ZW5kIE1lZ2EtODAw\",\n                                \"--framer-font-family\": '\"Lexend Mega\", sans-serif',\n                                \"--framer-font-size\": \"58px\",\n                                \"--framer-font-weight\": \"800\",\n                                \"--framer-letter-spacing\": \"-9px\",\n                                \"--framer-line-height\": \"1em\",\n                                \"--framer-text-alignment\": \"center\",\n                                \"--framer-text-color\": \"rgb(255, 255, 255)\"\n                              },\n                              children: \"upgrade.\"\n                            })]\n                          }),\n                          initial: optimizeAppear(\"initial\", \"c4fdbf\", animation6, \"1mar9c3\"),\n                          transformTemplate: optimizeAppearTransformTemplate(\"c4fdbf\", transformTemplate1)\n                        }\n                      },\n                      children: /*#__PURE__*/_jsx(RichText, {\n                        __fromCanvasComponent: true,\n                        animate: optimizeAppear(\"animate\", \"8n6dj5\", animation4, \"72rtr7\"),\n                        children: /*#__PURE__*/_jsxs(React.Fragment, {\n                          children: [/*#__PURE__*/_jsx(\"p\", {\n                            style: {\n                              \"--font-selector\": \"R0Y7TGV4ZW5kIE1lZ2EtODAw\",\n                              \"--framer-font-family\": '\"Lexend Mega\", sans-serif',\n                              \"--framer-font-size\": \"84px\",\n                              \"--framer-font-weight\": \"800\",\n                              \"--framer-letter-spacing\": \"-10px\",\n                              \"--framer-line-height\": \"1em\",\n                              \"--framer-text-alignment\": \"center\",\n                              \"--framer-text-color\": \"rgb(255, 255, 255)\"\n                            },\n                            children: \"A camera \"\n                          }), /*#__PURE__*/_jsx(\"p\", {\n                            style: {\n                              \"--font-selector\": \"R0Y7TGV4ZW5kIE1lZ2EtODAw\",\n                              \"--framer-font-family\": '\"Lexend Mega\", sans-serif',\n                              \"--framer-font-size\": \"84px\",\n                              \"--framer-font-weight\": \"800\",\n                              \"--framer-letter-spacing\": \"-10px\",\n                              \"--framer-line-height\": \"1em\",\n                              \"--framer-text-alignment\": \"center\",\n                              \"--framer-text-color\": \"rgb(255, 255, 255)\"\n                            },\n                            children: \"upgrade.\"\n                          })]\n                        }),\n                        className: \"framer-8n6dj5\",\n                        \"data-framer-appear-id\": \"8n6dj5\",\n                        fonts: [\"GF;Lexend Mega-800\"],\n                        initial: optimizeAppear(\"initial\", \"8n6dj5\", animation6, \"72rtr7\"),\n                        verticalAlignment: \"top\",\n                        withExternalLayout: true\n                      })\n                    })]\n                  })\n                }), isDisplayed() && /*#__PURE__*/_jsx(motion.div, {\n                  className: \"framer-ou22gf hidden-72rtr7 hidden-11yik1p\",\n                  \"data-framer-name\": \"Phone\",\n                  name: \"Phone\",\n                  children: /*#__PURE__*/_jsx(PropertyOverrides, {\n                    breakpoint: baseVariant,\n                    overrides: {\n                      xfAg9_bOj: {\n                        background: {\n                          alt: \"\",\n                          fit: \"fill\",\n                          intrinsicHeight: 330,\n                          intrinsicWidth: 465,\n                          pixelHeight: 660,\n                          pixelWidth: 930,\n                          sizes: \"min(100vw, 600px)\",\n                          src: new URL(\"https://framerusercontent.com/images/3QnAcayib98Bx9ny34RilgiSo.png?scale-down-to=512\").href,\n                          srcSet: `${new URL(\"https://framerusercontent.com/images/3QnAcayib98Bx9ny34RilgiSo.png?scale-down-to=512\").href} 512w, ${new URL(\"https://framerusercontent.com/images/3QnAcayib98Bx9ny34RilgiSo.png\").href} 930w`\n                        }\n                      }\n                    },\n                    children: /*#__PURE__*/_jsx(Image, {\n                      background: {\n                        alt: \"\",\n                        fit: \"fill\",\n                        intrinsicHeight: 330,\n                        intrinsicWidth: 465,\n                        pixelHeight: 660,\n                        pixelWidth: 930,\n                        src: new URL(\"https://framerusercontent.com/images/3QnAcayib98Bx9ny34RilgiSo.png?scale-down-to=512\").href,\n                        srcSet: `${new URL(\"https://framerusercontent.com/images/3QnAcayib98Bx9ny34RilgiSo.png?scale-down-to=512\").href} 512w, ${new URL(\"https://framerusercontent.com/images/3QnAcayib98Bx9ny34RilgiSo.png\").href} 930w`\n                      },\n                      className: \"framer-wjzbu\",\n                      \"data-framer-name\": \"Mobile_Hero\",\n                      name: \"Mobile_Hero\"\n                    })\n                  })\n                }), isDisplayed1() && /*#__PURE__*/_jsxs(motion.div, {\n                  className: \"framer-1pra0by hidden-1mar9c3\",\n                  \"data-framer-name\": \"Desktop\",\n                  name: \"Desktop\",\n                  children: [/*#__PURE__*/_jsxs(MotionDivWithFX, {\n                    __framer__animate: {\n                      transition: transition4\n                    },\n                    __framer__animateOnce: true,\n                    __framer__enter: animation7,\n                    __framer__exit: animation8,\n                    __framer__styleAppearEffectEnabled: true,\n                    __framer__threshold: .5,\n                    __perspectiveFX: false,\n                    __targetOpacity: 1,\n                    className: \"framer-1nq98vw\",\n                    \"data-framer-name\": \"Window\",\n                    name: \"Window\",\n                    transformTemplate: transformTemplate2,\n                    children: [/*#__PURE__*/_jsxs(motion.div, {\n                      className: \"framer-iyabev\",\n                      children: [/*#__PURE__*/_jsxs(motion.div, {\n                        className: \"framer-bc66ly\",\n                        children: [/*#__PURE__*/_jsx(motion.div, {\n                          className: \"framer-1yps570\"\n                        }), /*#__PURE__*/_jsx(motion.div, {\n                          className: \"framer-lp7kn5\"\n                        }), /*#__PURE__*/_jsx(motion.div, {\n                          className: \"framer-8wurz4\"\n                        })]\n                      }), /*#__PURE__*/_jsx(motion.div, {\n                        className: \"framer-1fmegbl\",\n                        children: /*#__PURE__*/_jsx(Container, {\n                          className: \"framer-8iy8y0-container\",\n                          transformTemplate: transformTemplate1,\n                          children: /*#__PURE__*/_jsx(Phosphor, {\n                            color: \"rgb(255, 255, 255)\",\n                            height: \"100%\",\n                            iconSearch: \"House\",\n                            iconSelection: \"Aperture\",\n                            id: \"s7DD9PGMi\",\n                            layoutId: \"s7DD9PGMi\",\n                            mirrored: false,\n                            selectByList: true,\n                            style: {\n                              height: \"100%\",\n                              width: \"100%\"\n                            },\n                            weight: \"duotone\",\n                            width: \"100%\"\n                          })\n                        })\n                      }), /*#__PURE__*/_jsx(motion.div, {\n                        className: \"framer-1nybe1h\",\n                        children: /*#__PURE__*/_jsx(Container, {\n                          className: \"framer-wfwavp-container\",\n                          transformTemplate: transformTemplate1,\n                          children: /*#__PURE__*/_jsx(Phosphor, {\n                            color: \"rgb(255, 255, 255)\",\n                            height: \"100%\",\n                            iconSearch: \"House\",\n                            iconSelection: \"Aperture\",\n                            id: \"nmqFvG_Ns\",\n                            layoutId: \"nmqFvG_Ns\",\n                            mirrored: false,\n                            selectByList: true,\n                            style: {\n                              height: \"100%\",\n                              width: \"100%\"\n                            },\n                            weight: \"duotone\",\n                            width: \"100%\"\n                          })\n                        })\n                      })]\n                    }), /*#__PURE__*/_jsxs(motion.div, {\n                      className: \"framer-2cdgsi\",\n                      children: [/*#__PURE__*/_jsxs(motion.div, {\n                        className: \"framer-aebpjn\",\n                        children: [/*#__PURE__*/_jsx(motion.div, {\n                          background: {\n                            alt: \"\",\n                            fit: \"fill\",\n                            intrinsicHeight: 5401,\n                            intrinsicWidth: 3930,\n                            pixelHeight: 5401,\n                            pixelWidth: 3930,\n                            src: new URL(\"https://framerusercontent.com/images/o1pD6ibn8uJGSMHVlsx9EmLoFeg.jpg?scale-down-to=2048\").href\n                          },\n                          className: \"framer-1i5r09m\",\n                          children: /*#__PURE__*/_jsx(Container, {\n                            className: \"framer-1je1dlq-container\",\n                            children: /*#__PURE__*/_jsx(Video, {\n                              backgroundColor: \"rgba(0, 0, 0, 0)\",\n                              borderRadius: 0,\n                              bottomLeftRadius: 0,\n                              bottomRightRadius: 0,\n                              canvasPlay: false,\n                              controls: false,\n                              height: \"100%\",\n                              id: \"qlytyLaHL\",\n                              isMixedBorderRadius: false,\n                              layoutId: \"qlytyLaHL\",\n                              loop: true,\n                              muted: true,\n                              objectFit: \"cover\",\n                              playing: true,\n                              posterEnabled: false,\n                              srcFile: new URL(\"https://framerusercontent.com/modules/assets/0Ls3wPKjQE6lTjT5sLzZEOKNQdo~kh6YtW9V1zaXAhIwSG9ogWFkhjdWf1hq06gVIHYz8VE.mp4\").href,\n                              srcType: \"Upload\",\n                              srcUrl: \"https://assets.mixkit.co/videos/preview/mixkit-ice-cream-glass-of-red-soda-5094-small.mp4\",\n                              startTime: 0,\n                              style: {\n                                height: \"100%\",\n                                width: \"100%\"\n                              },\n                              topLeftRadius: 0,\n                              topRightRadius: 0,\n                              volume: 25,\n                              width: \"100%\"\n                            })\n                          })\n                        }), /*#__PURE__*/_jsx(motion.div, {\n                          className: \"framer-1daav72\"\n                        })]\n                      }), /*#__PURE__*/_jsx(Container, {\n                        className: \"framer-1tmhkvk-container\",\n                        children: /*#__PURE__*/_jsx(Timeline, {\n                          height: \"100%\",\n                          id: \"Hv3AA9T7G\",\n                          layoutId: \"Hv3AA9T7G\",\n                          variant: \"GCCAzZyX7\",\n                          width: \"100%\"\n                        })\n                      })]\n                    })]\n                  }), /*#__PURE__*/_jsxs(MotionDivWithFX, {\n                    __framer__adjustPosition: false,\n                    __framer__animate: {\n                      transition: transition5\n                    },\n                    __framer__animateOnce: true,\n                    __framer__enter: animation9,\n                    __framer__exit: animation10,\n                    __framer__offset: 0,\n                    __framer__parallaxTransformEnabled: true,\n                    __framer__speed: 120,\n                    __framer__styleAppearEffectEnabled: true,\n                    __framer__threshold: .5,\n                    __perspectiveFX: false,\n                    __targetOpacity: 1,\n                    className: \"framer-1wuc1y8\",\n                    \"data-framer-name\": \"Phone\",\n                    name: \"Phone\",\n                    transformTemplate: transformTemplate3,\n                    children: [/*#__PURE__*/_jsx(motion.div, {\n                      background: {\n                        alt: \"\",\n                        fit: \"fill\",\n                        intrinsicHeight: 5401,\n                        intrinsicWidth: 3930,\n                        pixelHeight: 5401,\n                        pixelWidth: 3930,\n                        src: new URL(\"https://framerusercontent.com/images/o1pD6ibn8uJGSMHVlsx9EmLoFeg.jpg?scale-down-to=2048\").href\n                      },\n                      className: \"framer-h1shxi\",\n                      children: /*#__PURE__*/_jsx(Image, {\n                        background: {\n                          alt: \"\",\n                          fit: \"fill\",\n                          intrinsicHeight: 355.5,\n                          intrinsicWidth: 200,\n                          pixelHeight: 711,\n                          pixelWidth: 400,\n                          sizes: \"206px\",\n                          src: new URL(\"https://framerusercontent.com/images/58QUiLSibb4LmwSohUvv5V1uK5Y.jpg?scale-down-to=512\").href,\n                          srcSet: `${new URL(\"https://framerusercontent.com/images/58QUiLSibb4LmwSohUvv5V1uK5Y.jpg?scale-down-to=512\").href} 288w, ${new URL(\"https://framerusercontent.com/images/58QUiLSibb4LmwSohUvv5V1uK5Y.jpg\").href} 400w`\n                        },\n                        className: \"framer-n4oh5j\",\n                        \"data-framer-name\": \"image\",\n                        name: \"image\"\n                      })\n                    }), /*#__PURE__*/_jsx(motion.div, {\n                      className: \"framer-4cc48i\",\n                      children: /*#__PURE__*/_jsx(motion.div, {\n                        className: \"framer-9xvxt6\",\n                        children: /*#__PURE__*/_jsx(motion.div, {\n                          className: \"framer-1ynzyrj\",\n                          transformTemplate: transformTemplate4\n                        })\n                      })\n                    })]\n                  })]\n                }), /*#__PURE__*/_jsxs(motion.div, {\n                  className: \"framer-c05n2u\",\n                  children: [/*#__PURE__*/_jsx(PropertyOverrides, {\n                    breakpoint: baseVariant,\n                    overrides: {\n                      xfAg9_bOj: {\n                        children: /*#__PURE__*/_jsx(React.Fragment, {\n                          children: /*#__PURE__*/_jsx(\"p\", {\n                            style: {\n                              \"--font-selector\": \"R0Y7TGV4ZW5kIEV4YS1yZWd1bGFy\",\n                              \"--framer-font-family\": '\"Lexend Exa\", \"Lexend Exa Placeholder\", sans-serif',\n                              \"--framer-font-size\": \"18px\",\n                              \"--framer-letter-spacing\": \"-2px\",\n                              \"--framer-line-height\": \"1.7em\",\n                              \"--framer-text-alignment\": \"center\",\n                              \"--framer-text-color\": \"rgb(255, 255, 255)\"\n                            },\n                            children: \"Screen and camera recording for making an impression. Fully customisable, instantly shareable, from your phone or mac.\"\n                          })\n                        })\n                      }\n                    },\n                    children: /*#__PURE__*/_jsx(RichTextWithFX, {\n                      __framer__animate: {\n                        transition: transition6\n                      },\n                      __framer__animateOnce: true,\n                      __framer__enter: animation11,\n                      __framer__exit: animation12,\n                      __framer__styleAppearEffectEnabled: true,\n                      __framer__threshold: .5,\n                      __fromCanvasComponent: true,\n                      __perspectiveFX: false,\n                      __targetOpacity: 1,\n                      children: /*#__PURE__*/_jsx(React.Fragment, {\n                        children: /*#__PURE__*/_jsx(\"p\", {\n                          style: {\n                            \"--font-selector\": \"R0Y7TGV4ZW5kIEV4YS1yZWd1bGFy\",\n                            \"--framer-font-family\": '\"Lexend Exa\", \"Lexend Exa Placeholder\", sans-serif',\n                            \"--framer-font-size\": \"24px\",\n                            \"--framer-letter-spacing\": \"-2.2px\",\n                            \"--framer-line-height\": \"1.7em\",\n                            \"--framer-text-alignment\": \"center\",\n                            \"--framer-text-color\": \"rgb(255, 255, 255)\"\n                          },\n                          children: \"Screen and camera recording for making an impression. Fully customisable, instantly shareable, from your phone or mac.\"\n                        })\n                      }),\n                      className: \"framer-1uodhl9\",\n                      fonts: [\"GF;Lexend Exa-regular\"],\n                      verticalAlignment: \"top\",\n                      withExternalLayout: true\n                    })\n                  }), /*#__PURE__*/_jsx(ContainerWithFX, {\n                    __framer__animate: {\n                      transition: transition7\n                    },\n                    __framer__animateOnce: true,\n                    __framer__enter: animation11,\n                    __framer__exit: animation13,\n                    __framer__styleAppearEffectEnabled: true,\n                    __framer__threshold: .5,\n                    __perspectiveFX: false,\n                    __targetOpacity: 1,\n                    className: \"framer-1cmkg7-container\",\n                    children: /*#__PURE__*/_jsx(PropertyOverrides, {\n                      breakpoint: baseVariant,\n                      overrides: {\n                        xfAg9_bOj: {\n                          variant: \"RKoV4OAn4\"\n                        }\n                      },\n                      children: /*#__PURE__*/_jsx(Button, {\n                        height: \"100%\",\n                        id: \"mQkcgLE1z\",\n                        layoutId: \"mQkcgLE1z\",\n                        title: \"Download MAC APP\",\n                        variant: \"ztMitrOzb\",\n                        width: \"100%\"\n                      })\n                    })\n                  })]\n                }), /*#__PURE__*/_jsxs(motion.div, {\n                  className: \"framer-rv2un6\",\n                  children: [/*#__PURE__*/_jsx(MotionDivWithFX, {\n                    __framer__animate: {\n                      transition: transition6\n                    },\n                    __framer__animateOnce: true,\n                    __framer__enter: animation11,\n                    __framer__exit: animation12,\n                    __framer__styleAppearEffectEnabled: true,\n                    __framer__threshold: .5,\n                    __perspectiveFX: false,\n                    __targetOpacity: 1,\n                    className: \"framer-90749l\",\n                    children: /*#__PURE__*/_jsx(SVG, {\n                      className: \"framer-1ky4m3k\",\n                      \"data-framer-name\": \"Icon\",\n                      layout: \"position\",\n                      name: \"Icon\",\n                      opacity: 1,\n                      svg: '<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 49 48\"><path d=\"M 24.5 12.75 C 24.5 18.963 19.463 24 13.25 24 L 2 24 L 2 12.75 C 2 6.537 7.037 1.5 13.25 1.5 C 19.463 1.5 24.5 6.537 24.5 12.75 Z M 24.5 35.25 C 24.5 29.037 29.537 24 35.75 24 L 47 24 L 47 35.25 C 47 41.463 41.963 46.5 35.75 46.5 C 29.537 46.5 24.5 41.463 24.5 35.25 Z M 2 35.25 C 2 41.463 7.037 46.5 13.25 46.5 L 24.5 46.5 L 24.5 35.25 C 24.5 29.037 19.463 24 13.25 24 C 7.037 24 2 29.037 2 35.25 Z M 47 12.75 C 47 6.537 41.963 1.5 35.75 1.5 L 24.5 1.5 L 24.5 12.75 C 24.5 18.963 29.537 24 35.75 24 C 41.963 24 47 18.963 47 12.75 Z\" fill=\"#e32288\"></path></svg>',\n                      svgContentId: 2963924911,\n                      withExternalLayout: true\n                    })\n                  }), isDisplayed1() && /*#__PURE__*/_jsx(MotionDivWithFX, {\n                    __framer__animate: {\n                      transition: transition7\n                    },\n                    __framer__animateOnce: true,\n                    __framer__enter: animation11,\n                    __framer__exit: animation13,\n                    __framer__styleAppearEffectEnabled: true,\n                    __framer__threshold: .5,\n                    __perspectiveFX: false,\n                    __targetOpacity: 1,\n                    className: \"framer-1mbjv3t hidden-1mar9c3\",\n                    children: /*#__PURE__*/_jsx(SVGWithFX, {\n                      __framer__adjustPosition: false,\n                      __framer__offset: 0,\n                      __framer__parallaxTransformEnabled: true,\n                      __framer__speed: 100,\n                      __perspectiveFX: false,\n                      __targetOpacity: 1,\n                      className: \"framer-1qpyg6w\",\n                      \"data-framer-name\": \"Icon\",\n                      layout: \"position\",\n                      name: \"Icon\",\n                      opacity: 1,\n                      svg: '<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 119 30\"><path d=\"M 2.941 27.825 L 28.591 27.825 L 28.591 2.175 L 2.941 2.175 Z M 23.654 12.532 L 18.234 12.532 L 18.234 7.112 L 23.654 7.112 Z M 7.877 7.112 L 13.3 7.112 L 13.3 17.468 L 23.654 17.468 L 23.654 22.888 L 7.877 22.888 Z M 45.294 2.175 C 38.211 2.175 32.469 7.917 32.469 15 C 32.469 22.083 38.211 27.825 45.294 27.825 C 52.377 27.825 58.119 22.083 58.119 15 C 58.111 7.92 52.374 2.183 45.294 2.175 Z M 45.294 22.888 C 40.938 22.888 37.406 19.356 37.406 15 C 37.406 10.644 40.938 7.112 45.294 7.112 C 49.65 7.112 53.182 10.644 53.182 15 C 53.175 19.354 49.648 22.881 45.294 22.888 Z M 104.013 2.175 C 96.931 2.175 91.189 7.916 91.189 14.999 C 91.189 22.081 96.93 27.823 104.012 27.823 C 111.095 27.823 116.836 22.082 116.837 15 C 116.829 7.921 111.092 2.184 104.013 2.175 Z M 104.013 22.888 C 99.963 22.877 96.579 19.802 96.182 15.772 C 95.785 11.742 98.503 8.065 102.473 7.264 C 105.879 6.588 109.327 8.219 110.964 11.282 C 112.6 14.345 112.041 18.118 109.586 20.574 C 108.108 22.053 106.104 22.885 104.013 22.888 Z M 74.653 2.175 C 67.57 2.175 61.828 7.917 61.828 15 C 61.828 22.083 67.57 27.825 74.653 27.825 C 81.736 27.825 87.478 22.083 87.478 15 C 87.47 7.92 81.733 2.183 74.653 2.175 Z M 74.653 22.888 C 70.619 22.89 67.234 19.849 66.806 15.838 C 66.377 11.827 69.044 8.139 72.987 7.289 C 76.93 6.439 80.879 8.701 82.141 12.532 L 74.653 12.532 L 74.653 17.468 L 82.141 17.468 C 81.073 20.699 78.056 22.883 74.653 22.888 Z\" fill=\"#c03ba1\"></path></svg>',\n                      svgContentId: 351039545,\n                      withExternalLayout: true\n                    })\n                  }), /*#__PURE__*/_jsx(MotionDivWithFX, {\n                    __framer__animate: {\n                      transition: transition8\n                    },\n                    __framer__animateOnce: true,\n                    __framer__enter: animation11,\n                    __framer__exit: animation14,\n                    __framer__styleAppearEffectEnabled: true,\n                    __framer__threshold: .5,\n                    __perspectiveFX: false,\n                    __targetOpacity: 1,\n                    className: \"framer-gx9kas\",\n                    children: /*#__PURE__*/_jsx(SVGWithFX, {\n                      __framer__adjustPosition: false,\n                      __framer__offset: 0,\n                      __framer__parallaxTransformEnabled: true,\n                      __framer__speed: 100,\n                      __perspectiveFX: false,\n                      __targetOpacity: .8,\n                      className: \"framer-15rinfo\",\n                      \"data-framer-name\": \"Icon\",\n                      layout: \"position\",\n                      name: \"Icon\",\n                      opacity: .8,\n                      svg: '<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 73 49\"><path d=\"M 46.868 24 C 46.868 36.426 36.794 46.5 24.368 46.5 C 11.941 46.5 1.868 36.426 1.868 24 C 1.868 11.574 11.94 1.5 24.368 1.5 C 36.794 1.5 46.868 11.574 46.868 24 Z\" fill=\"#a348b2\" opacity=\"0.4\"></path><path d=\"M 71.132 24 C 71.132 36.426 61.157 46.5 48.852 46.5 C 36.548 46.5 26.574 36.426 26.574 24 C 26.574 11.574 36.547 1.5 48.852 1.5 C 61.156 1.5 71.132 11.574 71.132 24 Z\" fill=\"#a348b2\" opacity=\"0.5\"></path><path d=\"M 36.67 42.842 C 42.81 38.824 46.868 31.886 46.868 24 C 46.868 16.114 42.811 9.176 36.67 5.159 C 30.351 9.342 26.557 16.421 26.573 24 C 26.556 31.579 30.35 38.659 36.67 42.842 Z\" fill=\"#a348b2\"></path></svg>',\n                      svgContentId: 83300307,\n                      withExternalLayout: true\n                    })\n                  }), isDisplayed1() && /*#__PURE__*/_jsx(MotionDivWithFX, {\n                    __framer__animate: {\n                      transition: transition9\n                    },\n                    __framer__animateOnce: true,\n                    __framer__enter: animation11,\n                    __framer__exit: animation15,\n                    __framer__styleAppearEffectEnabled: true,\n                    __framer__threshold: .5,\n                    __perspectiveFX: false,\n                    __targetOpacity: 1,\n                    className: \"framer-1o89is1 hidden-1mar9c3\",\n                    children: /*#__PURE__*/_jsx(SVGWithFX, {\n                      __framer__adjustPosition: false,\n                      __framer__offset: 0,\n                      __framer__parallaxTransformEnabled: true,\n                      __framer__speed: 100,\n                      __perspectiveFX: false,\n                      __targetOpacity: 1,\n                      className: \"framer-10car8i\",\n                      \"data-framer-name\": \"Icon\",\n                      layout: \"position\",\n                      name: \"Icon\",\n                      opacity: 1,\n                      svg: '<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 132 40\"><path d=\"M 23.23 11.39 L 25.23 11.39 L 25.23 25.31 L 31.23 25.31 L 31.23 27.31 L 23.23 27.31 Z M 37.46 11.39 C 40.774 11.39 43.46 14.076 43.46 17.39 C 43.46 20.704 40.774 23.39 37.46 23.39 C 34.146 23.39 31.46 20.704 31.46 17.39 C 31.46 14.076 34.146 11.39 37.46 11.39 Z M 37.46 21.39 C 39.669 21.39 41.46 19.599 41.46 17.39 C 41.46 15.181 39.669 13.39 37.46 13.39 C 35.251 13.39 33.46 15.181 33.46 17.39 C 33.471 19.591 35.259 21.37 37.46 21.37 Z M 33.46 25.33 L 41.46 25.33 L 41.46 27.33 L 33.46 27.33 Z M 59.06 27.33 L 57.06 27.33 L 57.06 25.9 C 55.77 26.803 54.234 27.288 52.66 27.29 C 48.96 27.315 45.726 24.799 44.84 21.207 C 43.953 17.615 45.645 13.884 48.932 12.184 C 52.218 10.485 56.241 11.26 58.66 14.06 L 57.19 15.37 C 55.351 13.315 52.348 12.779 49.911 14.07 C 47.475 15.361 46.232 18.147 46.899 20.823 C 47.567 23.499 49.972 25.375 52.73 25.37 C 54.412 25.373 56.011 24.643 57.11 23.37 L 51.71 23.37 L 51.71 21.37 L 59.08 21.37 Z M 66.42 11.43 C 69.734 11.43 72.42 14.116 72.42 17.43 C 72.42 20.744 69.734 23.43 66.42 23.43 C 63.106 23.43 60.42 20.744 60.42 17.43 C 60.409 15.828 61.039 14.289 62.17 13.154 C 63.301 12.02 64.838 11.385 66.44 11.39 Z M 66.42 21.43 C 68.629 21.43 70.42 19.639 70.42 17.43 C 70.42 15.221 68.629 13.43 66.42 13.43 C 64.211 13.43 62.42 15.221 62.42 17.43 C 62.453 19.623 64.246 21.381 66.44 21.37 Z M 62.42 25.37 L 70.42 25.37 L 70.42 27.37 L 62.42 27.37 Z M 74.55 11.39 L 76.55 11.39 L 76.55 27.29 L 74.55 27.29 Z M 79.32 11.39 L 81.32 11.39 C 81.423 11.38 81.527 11.38 81.63 11.39 C 83.915 11.142 86.142 12.222 87.362 14.17 C 88.582 16.118 88.582 18.592 87.362 20.54 C 86.142 22.488 83.915 23.568 81.63 23.32 L 81.32 23.32 L 81.32 27.32 L 79.32 27.32 Z M 81.32 13.39 L 81.32 21.3 L 81.63 21.3 C 83.172 21.505 84.694 20.798 85.53 19.486 C 86.367 18.174 86.367 16.496 85.53 15.184 C 84.694 13.872 83.172 13.165 81.63 13.37 C 81.521 13.381 81.414 13.405 81.31 13.44 Z M 95.73 12.54 L 94.25 13.71 C 93.729 13.165 92.939 12.972 92.225 13.214 C 91.511 13.457 91.002 14.091 90.92 14.84 L 90.92 15 C 90.92 15.88 91.53 16.47 92.72 16.55 C 97.3 16.83 99.4 18.98 99.4 21.82 L 99.4 22 C 99.159 24.295 97.601 26.239 95.413 26.975 C 93.225 27.711 90.809 27.103 89.23 25.42 L 90.76 24.24 C 91.481 25.012 92.505 25.429 93.56 25.38 C 95.561 25.485 97.29 23.995 97.48 22 L 97.48 21.86 C 97.48 19.19 94.86 18.7 92.59 18.48 C 90.49 18.28 88.98 16.97 88.98 15.08 L 88.98 15 C 89.134 12.957 90.861 11.392 92.91 11.44 C 93.967 11.409 94.988 11.827 95.72 12.59 Z M 107.23 25.26 C 109.72 25.26 111.69 22.57 111.69 19.26 L 111.69 11.26 L 113.69 11.26 L 113.69 19.26 C 113.69 23.66 110.81 27.21 107.27 27.21 C 103.73 27.21 100.85 23.66 100.85 19.26 L 100.85 11.26 L 102.85 11.26 L 102.85 19.26 C 102.77 22.62 104.74 25.31 107.22 25.31 Z M 129.04 27.26 L 127.04 27.26 L 127.04 17.36 L 122.43 23.36 L 117.82 17.36 L 117.82 27.29 L 115.82 27.29 L 115.82 11.39 L 122.42 20.08 L 129.02 11.39 Z M 13.63 9 C 13.63 5.996 11.194 3.56 8.19 3.56 C 5.186 3.56 2.75 5.996 2.75 9 L 2.75 25.45 L 7.23 28.66 L 7.23 36.48 L 9.15 36.48 L 9.15 28.66 L 13.63 25.45 Z M 11.71 18.2 L 9.15 20.76 L 9.15 18.36 L 11.71 15.8 Z M 4.71 15.8 L 7.27 18.36 L 7.27 20.76 L 4.71 18.2 Z M 11.71 13.08 L 8.19 16.6 L 4.67 13 L 4.67 10.6 L 8.19 14.12 L 11.71 10.6 Z M 8.19 5.48 C 9.781 5.487 11.172 6.555 11.59 8.09 L 8.19 11.48 L 4.79 8.09 C 5.193 6.539 6.587 5.452 8.19 5.44 Z M 4.67 24.48 L 4.67 20.88 L 7.23 23.44 L 7.23 26.3 Z M 9.15 26.31 L 9.15 23.44 L 11.71 20.88 L 11.71 24.47 Z\" fill=\"#8156c6\"></path></svg>',\n                      svgContentId: 3133933607,\n                      withExternalLayout: true\n                    })\n                  }), /*#__PURE__*/_jsx(MotionDivWithFX, {\n                    __framer__animate: {\n                      transition: transition10\n                    },\n                    __framer__animateOnce: true,\n                    __framer__enter: animation11,\n                    __framer__exit: animation16,\n                    __framer__styleAppearEffectEnabled: true,\n                    __framer__threshold: .5,\n                    __perspectiveFX: false,\n                    __targetOpacity: 1,\n                    className: \"framer-1fbnqep\",\n                    children: /*#__PURE__*/_jsx(SVGWithFX, {\n                      __framer__adjustPosition: false,\n                      __framer__offset: 0,\n                      __framer__parallaxTransformEnabled: true,\n                      __framer__speed: 100,\n                      __perspectiveFX: false,\n                      __targetOpacity: .8,\n                      className: \"framer-shhfnx\",\n                      \"data-framer-name\": \"Icon\",\n                      layout: \"position\",\n                      name: \"Icon\",\n                      opacity: .8,\n                      svg: '<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 42 38\"><path d=\"M 5.747 28.726 C 7.287 29.8 9.784 29.8 11.324 28.726 C 12.864 27.652 12.864 25.91 11.324 24.836 C 9.784 23.761 7.287 23.761 5.747 24.836 C 4.207 25.91 4.207 27.652 5.747 28.726 Z M 21.732 14.137 C 24.042 15.748 27.788 15.748 30.098 14.137 C 32.408 12.526 32.408 9.913 30.098 8.302 C 27.788 6.69 24.043 6.69 21.732 8.302 C 19.422 9.913 19.422 12.526 21.732 14.137 Z M 13.246 21.431 C 15.172 22.774 18.293 22.774 20.218 21.431 C 22.143 20.089 22.143 17.911 20.218 16.568 C 18.293 15.226 15.172 15.226 13.246 16.568 C 11.321 17.911 11.321 20.088 13.246 21.431 Z M 0.866 20.459 C 2.021 21.265 3.894 21.265 5.049 20.459 C 6.205 19.653 6.205 18.347 5.049 17.541 C 3.894 16.735 2.021 16.735 0.866 17.541 C -0.289 18.347 -0.289 19.653 0.866 20.459 Z M 13.246 5.87 C 15.172 7.213 18.293 7.213 20.218 5.87 C 22.143 4.527 22.143 2.35 20.218 1.007 C 18.293 -0.336 15.172 -0.336 13.246 1.007 C 11.321 2.35 11.321 4.527 13.246 5.87 Z M 5.747 13.165 C 7.287 14.239 9.784 14.239 11.324 13.165 C 12.864 12.09 12.864 10.348 11.324 9.275 C 9.784 8.2 7.287 8.2 5.747 9.275 C 4.207 10.348 4.207 12.09 5.747 13.165 Z M 13.246 36.993 C 15.172 38.336 18.293 38.336 20.218 36.993 C 22.143 35.65 22.143 33.473 20.218 32.13 C 18.293 30.787 15.172 30.787 13.246 32.13 C 11.321 33.473 11.321 35.65 13.246 36.993 Z M 31.901 21.918 C 34.211 23.529 37.957 23.529 40.267 21.918 C 42.577 20.306 42.577 17.694 40.267 16.082 C 37.957 14.471 34.211 14.471 31.901 16.082 C 29.591 17.694 29.591 20.306 31.901 21.918 Z M 21.732 29.698 C 24.042 31.31 27.788 31.31 30.098 29.698 C 32.408 28.087 32.408 25.474 30.098 23.863 C 27.788 22.252 24.043 22.252 21.732 23.863 C 19.422 25.474 19.422 28.087 21.732 29.698 Z\" fill=\"#6162d9\"></path></svg>',\n                      svgContentId: 1692896789,\n                      withExternalLayout: true\n                    })\n                  })]\n                })]\n              })\n            })]\n          }), /*#__PURE__*/_jsxs(motion.div, {\n            className: \"framer-onnfhp\",\n            children: [/*#__PURE__*/_jsxs(motion.div, {\n              className: \"framer-1nmndub\",\n              children: [/*#__PURE__*/_jsxs(motion.div, {\n                className: \"framer-21esn9\",\n                children: [/*#__PURE__*/_jsx(MotionDivWithFX, {\n                  __framer__animate: {\n                    transition: transition6\n                  },\n                  __framer__animateOnce: true,\n                  __framer__enter: animation11,\n                  __framer__exit: animation12,\n                  __framer__styleAppearEffectEnabled: true,\n                  __framer__threshold: .5,\n                  __perspectiveFX: false,\n                  __targetOpacity: 1,\n                  className: \"framer-40emjq\",\n                  children: /*#__PURE__*/_jsx(Container, {\n                    className: \"framer-13vkg5m-container\",\n                    children: /*#__PURE__*/_jsx(Phosphor, {\n                      color: \"rgb(227, 34, 136)\",\n                      height: \"100%\",\n                      iconSearch: \"House\",\n                      iconSelection: \"Record\",\n                      id: \"Pz1RqQeQS\",\n                      layoutId: \"Pz1RqQeQS\",\n                      mirrored: false,\n                      selectByList: true,\n                      style: {\n                        height: \"100%\",\n                        width: \"100%\"\n                      },\n                      weight: \"regular\",\n                      width: \"100%\"\n                    })\n                  })\n                }), /*#__PURE__*/_jsx(PropertyOverrides, {\n                  breakpoint: baseVariant,\n                  overrides: {\n                    VnBUqqa0X: {\n                      rawHTML: \"<span style='font-size: 0; line-height: 0; tab-size: 4; white-space: inherit; word-wrap: inherit'><span style='direction: ltr; font-size: 0'><span style='--framer-text-color: #e32288'>Record</span><span style=''> </span><br></span><span style='direction: ltr; font-size: 0'><span style=''>product </span><br></span><span style='direction: ltr; font-size: 0'><span style=''>demos</span><br></span></span>\"\n                    },\n                    xfAg9_bOj: {\n                      rawHTML: \"<span style='font-size: 0; line-height: 0; tab-size: 4; white-space: inherit; word-wrap: inherit'><span style='direction: ltr; font-size: 0'><span style='--framer-text-color: #e32288'>Record</span><span style=''> </span><br></span><span style='direction: ltr; font-size: 0'><span style=''>product </span><br></span><span style='direction: ltr; font-size: 0'><span style=''>demos</span><br></span></span>\"\n                    }\n                  },\n                  children: /*#__PURE__*/_jsx(TextWithFX, {\n                    __framer__animate: {\n                      transition: transition7\n                    },\n                    __framer__animateOnce: true,\n                    __framer__enter: animation11,\n                    __framer__exit: animation13,\n                    __framer__styleAppearEffectEnabled: true,\n                    __framer__threshold: .5,\n                    __fromCanvasComponent: true,\n                    __perspectiveFX: false,\n                    __targetOpacity: 1,\n                    alignment: \"left\",\n                    className: \"framer-fr9xg6\",\n                    fonts: [\"GF;Lexend Mega-800\"],\n                    rawHTML: \"<span style='font-size: 0; line-height: 0; tab-size: 4; white-space: inherit; word-wrap: inherit'><span style='direction: ltr; font-size: 0'><span style='--framer-text-color: #e32288'>Record</span><span style=''> product demos</span><br></span></span>\",\n                    verticalAlignment: \"top\",\n                    withExternalLayout: true\n                  })\n                }), /*#__PURE__*/_jsx(TextWithFX, {\n                  __framer__animate: {\n                    transition: transition8\n                  },\n                  __framer__animateOnce: true,\n                  __framer__enter: animation11,\n                  __framer__exit: animation14,\n                  __framer__styleAppearEffectEnabled: true,\n                  __framer__threshold: .5,\n                  __fromCanvasComponent: true,\n                  __perspectiveFX: false,\n                  __targetOpacity: .6,\n                  alignment: \"left\",\n                  className: \"framer-1bv6mh3\",\n                  fonts: [\"GF;Lexend Exa-regular\"],\n                  rawHTML: \"<span style='font-size: 0; line-height: 0; tab-size: 4; white-space: inherit; word-wrap: inherit'><span style='direction: ltr; font-size: 0'><span style=''>Recording is always just a click away. Snap something quick or use a million takes. Aperture is ready for antything.</span><br></span></span>\",\n                  verticalAlignment: \"top\",\n                  withExternalLayout: true\n                })]\n              }), /*#__PURE__*/_jsx(MotionDivWithFX, {\n                __framer__animate: {\n                  transition: transition9\n                },\n                __framer__animateOnce: true,\n                __framer__enter: animation17,\n                __framer__exit: animation18,\n                __framer__styleAppearEffectEnabled: true,\n                __framer__threshold: .5,\n                __perspectiveFX: false,\n                __targetOpacity: 1,\n                className: \"framer-1478p0m\",\n                children: /*#__PURE__*/_jsx(PropertyOverrides, {\n                  breakpoint: baseVariant,\n                  overrides: {\n                    VnBUqqa0X: {\n                      transformTemplate: transformTemplate3\n                    },\n                    xfAg9_bOj: {\n                      transformTemplate: transformTemplate3\n                    }\n                  },\n                  children: /*#__PURE__*/_jsx(motion.div, {\n                    className: \"framer-1h1wiom\",\n                    transformTemplate: transformTemplate5,\n                    children: /*#__PURE__*/_jsx(Container, {\n                      className: \"framer-1ofbvgw-container\",\n                      children: /*#__PURE__*/_jsx(Video1, {\n                        backgroundColor: \"rgba(0, 0, 0, 0)\",\n                        bottomLeft: 0,\n                        bottomRight: 0,\n                        canvasPlay: false,\n                        controls: false,\n                        height: \"100%\",\n                        id: \"sr5IIJan3\",\n                        isMixed: false,\n                        layoutId: \"sr5IIJan3\",\n                        loopType: \"startTime\",\n                        muted: true,\n                        objectFit: \"cover\",\n                        playing: true,\n                        posterEnabled: false,\n                        preload: \"auto\",\n                        radius: 0,\n                        restartOnEnter: false,\n                        srcFile: new URL(\"https://framerusercontent.com/modules/assets/WRN6SUNSc0B2wES77cJz4onlOao~fd_ABnatMJDTzqCfqp7l98LoalE8YIbbYofLXVrKphs.mp4\").href,\n                        srcType: \"Upload\",\n                        srcUrl: \"https://assets.mixkit.co/videos/preview/mixkit-ice-cream-glass-of-red-soda-5094-small.mp4\",\n                        startTime: 0,\n                        style: {\n                          height: \"100%\",\n                          width: \"100%\"\n                        },\n                        topLeft: 0,\n                        topRight: 0,\n                        volume: 25,\n                        width: \"100%\"\n                      })\n                    })\n                  })\n                })\n              })]\n            }), /*#__PURE__*/_jsxs(motion.div, {\n              className: \"framer-1nvxnn8\",\n              children: [isDisplayed2() && /*#__PURE__*/_jsx(MotionDivWithFX, {\n                __framer__animate: {\n                  transition: transition9\n                },\n                __framer__animateOnce: true,\n                __framer__enter: animation17,\n                __framer__exit: animation18,\n                __framer__styleAppearEffectEnabled: true,\n                __framer__threshold: .5,\n                __perspectiveFX: false,\n                __targetOpacity: 1,\n                className: \"framer-twcu7z hidden-11yik1p hidden-1mar9c3\",\n                \"data-framer-name\": \"Desktop\",\n                name: \"Desktop\",\n                transformTemplate: transformTemplate2,\n                children: /*#__PURE__*/_jsx(Container, {\n                  className: \"framer-c1zgxg-container\",\n                  children: /*#__PURE__*/_jsx(Video1, {\n                    backgroundColor: \"rgba(0, 0, 0, 0)\",\n                    bottomLeft: 0,\n                    bottomRight: 0,\n                    canvasPlay: false,\n                    controls: false,\n                    height: \"100%\",\n                    id: \"JBGkcRw7m\",\n                    isMixed: false,\n                    layoutId: \"JBGkcRw7m\",\n                    loopType: \"startTime\",\n                    muted: true,\n                    objectFit: \"cover\",\n                    playing: true,\n                    posterEnabled: false,\n                    preload: \"auto\",\n                    radius: 0,\n                    restartOnEnter: false,\n                    srcFile: new URL(\"https://framerusercontent.com/modules/assets/WvTJKiH3gS1dYloMPQdae2g0~6Z9Pu3hEFcHQyChtEbOmuUCMycZIyRDsRnD4sv84vaM.mp4\").href,\n                    srcType: \"Upload\",\n                    srcUrl: \"https://assets.mixkit.co/videos/preview/mixkit-ice-cream-glass-of-red-soda-5094-small.mp4\",\n                    startTime: 0,\n                    style: {\n                      height: \"100%\",\n                      width: \"100%\"\n                    },\n                    topLeft: 0,\n                    topRight: 0,\n                    volume: 25,\n                    width: \"100%\"\n                  })\n                })\n              }), /*#__PURE__*/_jsxs(motion.div, {\n                className: \"framer-156k2lf\",\n                children: [/*#__PURE__*/_jsx(MotionDivWithFX, {\n                  __framer__animate: {\n                    transition: transition6\n                  },\n                  __framer__animateOnce: true,\n                  __framer__enter: animation11,\n                  __framer__exit: animation12,\n                  __framer__styleAppearEffectEnabled: true,\n                  __framer__threshold: .5,\n                  __perspectiveFX: false,\n                  __targetOpacity: 1,\n                  className: \"framer-d79i1m\",\n                  children: /*#__PURE__*/_jsx(Container, {\n                    className: \"framer-1d7v5qd-container\",\n                    children: /*#__PURE__*/_jsx(Phosphor, {\n                      color: \"rgb(223, 99, 242)\",\n                      height: \"100%\",\n                      iconSearch: \"House\",\n                      iconSelection: \"FilmStrip\",\n                      id: \"EPMtcOsMN\",\n                      layoutId: \"EPMtcOsMN\",\n                      mirrored: false,\n                      selectByList: true,\n                      style: {\n                        height: \"100%\",\n                        width: \"100%\"\n                      },\n                      weight: \"regular\",\n                      width: \"100%\"\n                    })\n                  })\n                }), /*#__PURE__*/_jsx(TextWithFX, {\n                  __framer__animate: {\n                    transition: transition7\n                  },\n                  __framer__animateOnce: true,\n                  __framer__enter: animation11,\n                  __framer__exit: animation13,\n                  __framer__styleAppearEffectEnabled: true,\n                  __framer__threshold: .5,\n                  __fromCanvasComponent: true,\n                  __perspectiveFX: false,\n                  __targetOpacity: 1,\n                  alignment: \"left\",\n                  className: \"framer-16tyroa\",\n                  fonts: [\"GF;Lexend Mega-800\"],\n                  rawHTML: \"<span style='font-size: 0; line-height: 0; tab-size: 4; white-space: inherit; word-wrap: inherit'><span style='direction: ltr; font-size: 0'><span style='--framer-text-color: #df63f2'>Customize</span><span style=''> with your</span><br></span><span style='direction: ltr; font-size: 0'><span style=''>branding</span><br></span></span>\",\n                  verticalAlignment: \"top\",\n                  withExternalLayout: true\n                }), /*#__PURE__*/_jsx(TextWithFX, {\n                  __framer__animate: {\n                    transition: transition8\n                  },\n                  __framer__animateOnce: true,\n                  __framer__enter: animation11,\n                  __framer__exit: animation14,\n                  __framer__styleAppearEffectEnabled: true,\n                  __framer__threshold: .5,\n                  __fromCanvasComponent: true,\n                  __perspectiveFX: false,\n                  __targetOpacity: .6,\n                  alignment: \"left\",\n                  className: \"framer-kduwoo\",\n                  fonts: [\"GF;Lexend Exa-regular\"],\n                  rawHTML: \"<span style='font-size: 0; line-height: 0; tab-size: 4; white-space: inherit; word-wrap: inherit'><span style='direction: ltr; font-size: 0'><span style=''>With our built in editing tools and filters you\u2019ll make any video your own. Add your own identity with a few clicks.</span><br></span></span>\",\n                  verticalAlignment: \"top\",\n                  withExternalLayout: true\n                })]\n              }), isDisplayed3() && /*#__PURE__*/_jsx(MotionDivWithFX, {\n                __framer__animate: {\n                  transition: transition9\n                },\n                __framer__animateOnce: true,\n                __framer__enter: animation17,\n                __framer__exit: animation18,\n                __framer__styleAppearEffectEnabled: true,\n                __framer__threshold: .5,\n                __perspectiveFX: false,\n                __targetOpacity: 1,\n                className: \"framer-5qspys hidden-72rtr7\",\n                \"data-framer-name\": \"Mobile\",\n                name: \"Mobile\",\n                transformTemplate: transformTemplate2,\n                children: /*#__PURE__*/_jsx(Container, {\n                  className: \"framer-fwwejl-container\",\n                  children: /*#__PURE__*/_jsx(Video1, {\n                    backgroundColor: \"rgba(0, 0, 0, 0)\",\n                    bottomLeft: 0,\n                    bottomRight: 0,\n                    canvasPlay: false,\n                    controls: false,\n                    height: \"100%\",\n                    id: \"jz_XRpEw9\",\n                    isMixed: false,\n                    layoutId: \"jz_XRpEw9\",\n                    loopType: \"startTime\",\n                    muted: true,\n                    objectFit: \"cover\",\n                    playing: true,\n                    posterEnabled: false,\n                    preload: \"auto\",\n                    radius: 0,\n                    restartOnEnter: false,\n                    srcFile: new URL(\"https://framerusercontent.com/modules/assets/WvTJKiH3gS1dYloMPQdae2g0~6Z9Pu3hEFcHQyChtEbOmuUCMycZIyRDsRnD4sv84vaM.mp4\").href,\n                    srcType: \"Upload\",\n                    srcUrl: \"https://assets.mixkit.co/videos/preview/mixkit-ice-cream-glass-of-red-soda-5094-small.mp4\",\n                    startTime: 0,\n                    style: {\n                      height: \"100%\",\n                      width: \"100%\"\n                    },\n                    topLeft: 0,\n                    topRight: 0,\n                    volume: 25,\n                    width: \"100%\"\n                  })\n                })\n              })]\n            }), /*#__PURE__*/_jsxs(motion.div, {\n              className: \"framer-3gx9kc\",\n              children: [/*#__PURE__*/_jsxs(motion.div, {\n                className: \"framer-1adbo0x\",\n                children: [/*#__PURE__*/_jsx(MotionDivWithFX, {\n                  __framer__animate: {\n                    transition: transition6\n                  },\n                  __framer__animateOnce: true,\n                  __framer__enter: animation11,\n                  __framer__exit: animation12,\n                  __framer__styleAppearEffectEnabled: true,\n                  __framer__threshold: .5,\n                  __perspectiveFX: false,\n                  __targetOpacity: 1,\n                  className: \"framer-1fd9mxw\",\n                  children: /*#__PURE__*/_jsx(Container, {\n                    className: \"framer-1ywm8xd-container\",\n                    children: /*#__PURE__*/_jsx(Phosphor, {\n                      color: \"rgb(112, 112, 255)\",\n                      height: \"100%\",\n                      iconSearch: \"House\",\n                      iconSelection: \"YoutubeLogo\",\n                      id: \"mR7Uy0zqo\",\n                      layoutId: \"mR7Uy0zqo\",\n                      mirrored: false,\n                      selectByList: true,\n                      style: {\n                        height: \"100%\",\n                        width: \"100%\"\n                      },\n                      weight: \"regular\",\n                      width: \"100%\"\n                    })\n                  })\n                }), /*#__PURE__*/_jsx(TextWithFX, {\n                  __framer__animate: {\n                    transition: transition7\n                  },\n                  __framer__animateOnce: true,\n                  __framer__enter: animation11,\n                  __framer__exit: animation13,\n                  __framer__styleAppearEffectEnabled: true,\n                  __framer__threshold: .5,\n                  __fromCanvasComponent: true,\n                  __perspectiveFX: false,\n                  __targetOpacity: 1,\n                  alignment: \"left\",\n                  className: \"framer-1fhnj3\",\n                  fonts: [\"GF;Lexend Mega-800\"],\n                  rawHTML: \"<span style='font-size: 0; line-height: 0; tab-size: 4; white-space: inherit; word-wrap: inherit'><span style='direction: ltr; font-size: 0'><span style='--framer-text-color: #7170ff'>Share</span><span style=''> </span><br></span><span style='direction: ltr; font-size: 0'><span style=''>to social directly</span><br></span></span>\",\n                  verticalAlignment: \"top\",\n                  withExternalLayout: true\n                }), /*#__PURE__*/_jsx(TextWithFX, {\n                  __framer__animate: {\n                    transition: transition8\n                  },\n                  __framer__animateOnce: true,\n                  __framer__enter: animation11,\n                  __framer__exit: animation14,\n                  __framer__styleAppearEffectEnabled: true,\n                  __framer__threshold: .5,\n                  __fromCanvasComponent: true,\n                  __perspectiveFX: false,\n                  __targetOpacity: .6,\n                  alignment: \"left\",\n                  className: \"framer-13vhizd\",\n                  fonts: [\"GF;Lexend Exa-regular\"],\n                  rawHTML: \"<span style='font-size: 0; line-height: 0; tab-size: 4; white-space: inherit; word-wrap: inherit'><span style='direction: ltr; font-size: 0'><span style=''>Ready to share your work? Aperture compresses your video for various social networks automatically.</span><br></span></span>\",\n                  verticalAlignment: \"top\",\n                  withExternalLayout: true\n                })]\n              }), /*#__PURE__*/_jsxs(MotionDivWithFX, {\n                __framer__animate: {\n                  transition: transition10\n                },\n                __framer__animateOnce: true,\n                __framer__enter: animation17,\n                __framer__exit: animation19,\n                __framer__styleAppearEffectEnabled: true,\n                __framer__threshold: .5,\n                __perspectiveFX: false,\n                __targetOpacity: 1,\n                className: \"framer-3fbgyg\",\n                transformTemplate: transformTemplate6,\n                children: [/*#__PURE__*/_jsx(MotionDivWithFX, {\n                  __framer__animate: {\n                    transition: transition11\n                  },\n                  __framer__animateOnce: true,\n                  __framer__enter: animation,\n                  __framer__exit: animation20,\n                  __framer__styleAppearEffectEnabled: true,\n                  __framer__threshold: .5,\n                  __perspectiveFX: false,\n                  __targetOpacity: 1,\n                  className: \"framer-6r0m1w\",\n                  children: /*#__PURE__*/_jsx(Container, {\n                    className: \"framer-1avc2jk-container\",\n                    children: /*#__PURE__*/_jsx(Phosphor, {\n                      color: \"rgb(255, 255, 255)\",\n                      height: \"100%\",\n                      iconSearch: \"House\",\n                      iconSelection: \"InstagramLogo\",\n                      id: \"KS1dqai_U\",\n                      layoutId: \"KS1dqai_U\",\n                      mirrored: false,\n                      selectByList: true,\n                      style: {\n                        height: \"100%\",\n                        width: \"100%\"\n                      },\n                      weight: \"fill\",\n                      width: \"100%\"\n                    })\n                  })\n                }), /*#__PURE__*/_jsx(MotionDivWithFX, {\n                  __framer__animate: {\n                    transition: transition12\n                  },\n                  __framer__animateOnce: true,\n                  __framer__enter: animation,\n                  __framer__exit: animation21,\n                  __framer__styleAppearEffectEnabled: true,\n                  __framer__threshold: .5,\n                  __perspectiveFX: false,\n                  __targetOpacity: 1,\n                  className: \"framer-w4hzpv\",\n                  children: /*#__PURE__*/_jsx(Container, {\n                    className: \"framer-ghjuc0-container\",\n                    children: /*#__PURE__*/_jsx(Phosphor, {\n                      color: \"rgb(255, 255, 255)\",\n                      height: \"100%\",\n                      iconSearch: \"House\",\n                      iconSelection: \"TiktokLogo\",\n                      id: \"Zb1gWsXhW\",\n                      layoutId: \"Zb1gWsXhW\",\n                      mirrored: false,\n                      selectByList: true,\n                      style: {\n                        height: \"100%\",\n                        width: \"100%\"\n                      },\n                      weight: \"fill\",\n                      width: \"100%\"\n                    })\n                  })\n                }), /*#__PURE__*/_jsx(MotionDivWithFX, {\n                  __framer__animate: {\n                    transition: transition13\n                  },\n                  __framer__animateOnce: true,\n                  __framer__enter: animation,\n                  __framer__exit: animation22,\n                  __framer__styleAppearEffectEnabled: true,\n                  __framer__threshold: .5,\n                  __perspectiveFX: false,\n                  __targetOpacity: 1,\n                  className: \"framer-1sookz7\",\n                  children: /*#__PURE__*/_jsx(Container, {\n                    className: \"framer-h3r9l5-container\",\n                    children: /*#__PURE__*/_jsx(Phosphor, {\n                      color: \"rgb(255, 255, 255)\",\n                      height: \"100%\",\n                      iconSearch: \"House\",\n                      iconSelection: \"YoutubeLogo\",\n                      id: \"sgdTmOjZC\",\n                      layoutId: \"sgdTmOjZC\",\n                      mirrored: false,\n                      selectByList: true,\n                      style: {\n                        height: \"100%\",\n                        width: \"100%\"\n                      },\n                      weight: \"fill\",\n                      width: \"100%\"\n                    })\n                  })\n                })]\n              })]\n            })]\n          }), /*#__PURE__*/_jsx(ImageWithFX, {\n            __framer__animate: {\n              transition: transition14\n            },\n            __framer__animateOnce: true,\n            __framer__enter: animation23,\n            __framer__exit: animation24,\n            __framer__styleAppearEffectEnabled: true,\n            __framer__threshold: .5,\n            __perspectiveFX: false,\n            __targetOpacity: 1,\n            background: {\n              alt: \"\",\n              fit: \"fill\",\n              intrinsicHeight: 1960,\n              intrinsicWidth: 3902,\n              loading: \"lazy\",\n              pixelHeight: 1960,\n              pixelWidth: 3902,\n              sizes: \"100vw\",\n              src: new URL(\"https://framerusercontent.com/images/7cycnvY35II7KajTTwyimcvhXY.jpg\").href,\n              srcSet: `${new URL(\"https://framerusercontent.com/images/7cycnvY35II7KajTTwyimcvhXY.jpg?scale-down-to=512\").href} 512w, ${new URL(\"https://framerusercontent.com/images/7cycnvY35II7KajTTwyimcvhXY.jpg?scale-down-to=1024\").href} 1024w, ${new URL(\"https://framerusercontent.com/images/7cycnvY35II7KajTTwyimcvhXY.jpg?scale-down-to=2048\").href} 2048w, ${new URL(\"https://framerusercontent.com/images/7cycnvY35II7KajTTwyimcvhXY.jpg\").href} 3902w`\n            },\n            className: \"framer-h7rxkx\",\n            children: /*#__PURE__*/_jsx(PropertyOverrides, {\n              breakpoint: baseVariant,\n              overrides: {\n                VnBUqqa0X: {\n                  transformTemplate: transformTemplate1\n                },\n                xfAg9_bOj: {\n                  transformTemplate: transformTemplate1\n                }\n              },\n              children: /*#__PURE__*/_jsxs(motion.div, {\n                className: \"framer-ckt6gv\",\n                transformTemplate: transformTemplate,\n                children: [/*#__PURE__*/_jsxs(motion.div, {\n                  className: \"framer-1rqwjp0\",\n                  children: [/*#__PURE__*/_jsx(TextWithFX, {\n                    __framer__animate: {\n                      transition: transition15\n                    },\n                    __framer__animateOnce: true,\n                    __framer__enter: animation25,\n                    __framer__exit: animation26,\n                    __framer__styleAppearEffectEnabled: true,\n                    __framer__threshold: 1,\n                    __fromCanvasComponent: true,\n                    __perspectiveFX: false,\n                    __targetOpacity: 1,\n                    alignment: \"center\",\n                    className: \"framer-1xmz3m0\",\n                    fonts: [\"GF;Lexend Mega-800\"],\n                    rawHTML: \"<span style='font-size: 0; line-height: 0; tab-size: 4; white-space: inherit; word-wrap: inherit'><span style='direction: ltr; font-size: 0'><span style=''>Every frame personalized.</span><br></span></span>\",\n                    verticalAlignment: \"top\",\n                    withExternalLayout: true\n                  }), /*#__PURE__*/_jsx(TextWithFX, {\n                    __framer__animate: {\n                      transition: transition16\n                    },\n                    __framer__animateOnce: true,\n                    __framer__enter: animation25,\n                    __framer__exit: animation27,\n                    __framer__styleAppearEffectEnabled: true,\n                    __framer__threshold: 1,\n                    __fromCanvasComponent: true,\n                    __perspectiveFX: false,\n                    __targetOpacity: .9,\n                    alignment: \"center\",\n                    className: \"framer-1fnps8j\",\n                    fonts: [\"GF;Lexend Exa-regular\"],\n                    rawHTML: \"<span style='font-size: 0; line-height: 0; tab-size: 4; white-space: inherit; word-wrap: inherit'><span style='direction: ltr; font-size: 0'><span style=''>Make your videos a continuation of your brand. Take full control of your output with the new Aperture. Try it for free today.</span><br></span></span>\",\n                    verticalAlignment: \"top\",\n                    withExternalLayout: true\n                  }), /*#__PURE__*/_jsx(Container, {\n                    className: \"framer-zvg6r3-container\",\n                    children: /*#__PURE__*/_jsx(PropertyOverrides, {\n                      breakpoint: baseVariant,\n                      overrides: {\n                        xfAg9_bOj: {\n                          variant: \"RKoV4OAn4\"\n                        }\n                      },\n                      children: /*#__PURE__*/_jsx(Button, {\n                        height: \"100%\",\n                        id: \"Fz3eqBDCT\",\n                        layoutId: \"Fz3eqBDCT\",\n                        title: \"Download MAC APP\",\n                        variant: \"ztMitrOzb\",\n                        width: \"100%\"\n                      })\n                    })\n                  })]\n                }), /*#__PURE__*/_jsxs(motion.div, {\n                  className: \"framer-2dfzf7\",\n                  children: [/*#__PURE__*/_jsx(Container, {\n                    className: \"framer-run78e-container\",\n                    children: /*#__PURE__*/_jsx(Phosphor, {\n                      color: \"rgb(255, 255, 255)\",\n                      height: \"100%\",\n                      iconSearch: \"House\",\n                      iconSelection: \"Aperture\",\n                      id: \"bruONXgO0\",\n                      layoutId: \"bruONXgO0\",\n                      mirrored: false,\n                      selectByList: true,\n                      style: {\n                        height: \"100%\",\n                        width: \"100%\"\n                      },\n                      weight: \"thin\",\n                      width: \"100%\"\n                    })\n                  }), /*#__PURE__*/_jsx(Text, {\n                    __fromCanvasComponent: true,\n                    alignment: \"center\",\n                    className: \"framer-juy0h3\",\n                    fonts: [\"GF;Lexend Zetta-300\"],\n                    rawHTML: \"<span style='font-size: 0; line-height: 0; tab-size: 4; white-space: inherit; word-wrap: inherit'><span style='direction: ltr; font-size: 0'><span style=''>APERTURE</span><br></span></span>\",\n                    verticalAlignment: \"top\",\n                    withExternalLayout: true\n                  }), /*#__PURE__*/_jsx(Text, {\n                    __fromCanvasComponent: true,\n                    alignment: \"center\",\n                    className: \"framer-13fnv3o\",\n                    fonts: [\"GF;Lexend Zetta-300\"],\n                    rawHTML: \"<span style='font-size: 0; line-height: 0; tab-size: 4; white-space: inherit; word-wrap: inherit'><span style='direction: ltr; font-size: 0'><span style=''>2021</span><br></span></span>\",\n                    verticalAlignment: \"top\",\n                    withExternalLayout: true\n                  })]\n                })]\n              })\n            })\n          })]\n        }), /*#__PURE__*/_jsx(\"div\", {\n          id: \"overlay\"\n        })]\n      })\n    })\n  });\n});\nconst css = ['.framer-2bPDZ [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; }', \"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\", `.${metadata.bodyClassName} { background: #000; }`, \".framer-2bPDZ .framer-lux5qc { display: block; }\", \".framer-2bPDZ .framer-72rtr7 { align-content: center; align-items: center; background-color: #000000; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px 0px 0px 0px; position: relative; width: 1400px; }\", \".framer-2bPDZ .framer-14o012c { flex: none; height: 1700px; overflow: hidden; position: relative; width: 100%; }\", \".framer-2bPDZ .framer-1tdgphz { flex: none; height: 980px; left: calc(49.95864350703062% - 1400px / 2); overflow: visible; position: absolute; top: calc(23.68421052631581% - 980px / 2); width: 1400px; }\", \".framer-2bPDZ .framer-1k74cr9 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 80px; height: 980px; justify-content: flex-start; left: calc(50.00000000000002% - 878px / 2); overflow: visible; padding: 0px 0px 0px 0px; position: absolute; top: 80px; width: 878px; }\", \".framer-2bPDZ .framer-19ddlv5 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 6px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px 0px 0px 0px; position: relative; width: min-content; }\", \".framer-2bPDZ .framer-1wwbjck-container { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 23px); opacity: 0.99; position: relative; width: 20px; }\", '.framer-2bPDZ .framer-19ksbqt { --framer-font-family: \"Lexend Zetta\", sans-serif; --framer-font-size: 18px; --framer-font-style: normal; --framer-font-weight: 800; --framer-letter-spacing: -2.3px; --framer-line-height: 1em; --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-text-alignment: start; --framer-text-color: #ffffff; --framer-text-decoration: none; --framer-text-transform: none; flex: none; height: auto; overflow: visible; position: relative; white-space: pre; width: auto; }', \".framer-2bPDZ .framer-mgmat7 { flex: none; height: 168px; overflow: visible; position: relative; width: 514px; }\", '.framer-2bPDZ .framer-148vyet { --framer-font-family: \"Lexend Mega\", sans-serif; --framer-font-size: 84px; --framer-font-style: normal; --framer-font-weight: 800; --framer-letter-spacing: -10px; --framer-line-height: 1em; --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-text-alignment: center; --framer-text-color: rgba(0, 0, 0, 0.7); --framer-text-decoration: none; --framer-text-transform: none; flex: none; height: auto; left: 50%; overflow: visible; position: absolute; top: 50%; transform: translate(-50%, -50%); white-space: pre; width: auto; }', \".framer-2bPDZ .framer-8n6dj5 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-paragraph-spacing: 0px; flex: none; height: auto; left: 0px; overflow: visible; position: absolute; text-shadow: 0px 20px 40px rgba(0, 0, 0, 0.2); top: 0px; white-space: pre; width: auto; }\", \".framer-2bPDZ .framer-ou22gf { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px 0px 0px 0px; position: relative; width: 100%; }\", \".framer-2bPDZ .framer-wjzbu { aspect-ratio: 1.4090909090909092 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 142px); max-width: 600px; overflow: visible; position: relative; width: 100%; }\", \".framer-2bPDZ .framer-1pra0by { flex: none; height: 509px; overflow: visible; position: relative; width: 100%; }\", \".framer-2bPDZ .framer-1nq98vw { align-content: center; align-items: center; background: linear-gradient(130deg, rgba(9, 1, 20, 0.8) 0%, rgba(17, 17, 17, 0.8) 100%); border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; box-shadow: 0px 20px 40px 0px rgba(0, 0, 0, 0.5), inset 1px 1px 1px 0px hsla(310, 100%, 84%, 0.14); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 479px; justify-content: center; left: 0px; overflow: visible; padding: 0px 0px 0px 0px; position: absolute; top: calc(49.90176817288804% - 479px / 2); transform: rotate(-2deg); width: 800px; }\", \".framer-2bPDZ .framer-iyabev { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: visible; padding: 20px 20px 20px 20px; position: relative; width: 100%; }\", \".framer-2bPDZ .framer-bc66ly { align-content: flex-end; align-items: flex-end; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 6px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px 0px 0px 0px; position: relative; width: 42px; }\", \".framer-2bPDZ .framer-1yps570, .framer-2bPDZ .framer-lp7kn5, .framer-2bPDZ .framer-8wurz4 { aspect-ratio: 1 / 1; background-color: rgba(68, 68, 68, 0.5); border-bottom-left-radius: 50%; border-bottom-right-radius: 50%; border-top-left-radius: 50%; border-top-right-radius: 50%; flex: none; height: var(--framer-aspect-ratio-supported, 10px); overflow: visible; position: relative; width: 10px; }\", \".framer-2bPDZ .framer-1fmegbl { flex: none; height: 22px; overflow: visible; position: relative; width: 40px; }\", \".framer-2bPDZ .framer-8iy8y0-container { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 23px); left: 50%; opacity: 0.41; position: absolute; top: 50%; transform: translate(-50%, -50%); width: 20px; }\", \".framer-2bPDZ .framer-1nybe1h { flex: none; height: 22px; opacity: 0; overflow: visible; position: relative; width: 40px; }\", \".framer-2bPDZ .framer-wfwavp-container { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 23px); left: 50%; opacity: 0.99; position: absolute; top: 50%; transform: translate(-50%, -50%); width: 20px; }\", \".framer-2bPDZ .framer-2cdgsi { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: 429px; justify-content: flex-start; overflow: visible; padding: 0px 20px 20px 20px; position: relative; width: 100%; }\", \".framer-2bPDZ .framer-aebpjn { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: 1px; justify-content: flex-start; overflow: visible; padding: 0px 0px 0px 0px; position: relative; width: 100%; }\", \".framer-2bPDZ .framer-1i5r09m { align-content: center; align-items: center; border-bottom-left-radius: 6px; border-bottom-right-radius: 6px; border-top-left-radius: 6px; border-top-right-radius: 6px; box-shadow: 0px 20px 40px 0px rgba(0, 0, 0, 0.5), inset 1px 1px 1px 0px hsla(310, 100%, 84%, 0.14); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 100%; justify-content: center; overflow: hidden; padding: 0px 0px 0px 0px; position: relative; width: 531px; will-change: transform; }\", \".framer-2bPDZ .framer-1je1dlq-container { flex: none; height: 100%; position: relative; width: 531px; }\", \".framer-2bPDZ .framer-1daav72 { background-color: rgba(68, 68, 68, 0.3); border-bottom-left-radius: 6px; border-bottom-right-radius: 6px; border-top-left-radius: 6px; border-top-right-radius: 6px; flex: 1 0 0px; height: 100%; overflow: visible; position: relative; width: 1px; }\", \".framer-2bPDZ .framer-1tmhkvk-container, .framer-2bPDZ .framer-1cmkg7-container, .framer-2bPDZ .framer-zvg6r3-container { flex: none; height: auto; position: relative; width: auto; }\", \".framer-2bPDZ .framer-1wuc1y8 { align-content: center; align-items: center; background: linear-gradient(148deg, #1d0c19 0%, rgba(17, 17, 17, 0.8) 100%); border-bottom-left-radius: 22px; border-bottom-right-radius: 22px; border-top-left-radius: 22px; border-top-right-radius: 22px; box-shadow: 0px 20px 40px 0px rgba(0, 0, 0, 0.5), inset 1px 1px 1px 0px rgba(255, 255, 255, 0.05); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 12px 12px 0px 12px; position: absolute; right: 10px; top: 50%; transform: translateY(-50%) rotate(2deg); width: 230px; }\", \".framer-2bPDZ .framer-h1shxi { align-content: flex-start; align-items: flex-start; border-bottom-left-radius: 11px; border-bottom-right-radius: 11px; border-top-left-radius: 11px; border-top-right-radius: 11px; box-shadow: 0px 20px 40px 0px rgba(0, 0, 0, 0.5), inset 1px 1px 1px 0px hsla(310, 100%, 84%, 0.14); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px 0px 0px 0px; position: relative; width: 100%; will-change: transform; }\", \".framer-2bPDZ .framer-n4oh5j { aspect-ratio: 0.5625879043600562 / 1; flex: 1 0 0px; height: var(--framer-aspect-ratio-supported, 366px); overflow: visible; position: relative; width: 1px; }\", \".framer-2bPDZ .framer-4cc48i { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: 60px; justify-content: center; overflow: visible; padding: 0px 0px 0px 0px; position: relative; width: 100%; }\", \".framer-2bPDZ .framer-9xvxt6 { aspect-ratio: 1 / 1; background-color: rgba(255, 255, 255, 0.1); border-bottom-left-radius: 50%; border-bottom-right-radius: 50%; border-top-left-radius: 50%; border-top-right-radius: 50%; flex: none; height: var(--framer-aspect-ratio-supported, 32px); overflow: visible; position: relative; width: 32px; }\", \".framer-2bPDZ .framer-1ynzyrj { aspect-ratio: 1 / 1; background-color: rgba(255, 255, 255, 0.1); border-bottom-left-radius: 50%; border-bottom-right-radius: 50%; border-top-left-radius: 50%; border-top-right-radius: 50%; flex: none; height: var(--framer-aspect-ratio-supported, 26px); left: 50%; overflow: visible; position: absolute; top: 50%; transform: translate(-50%, -50%) rotate(-1deg); width: 26px; }\", \".framer-2bPDZ .framer-c05n2u { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 60px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px 0px 0px 0px; position: relative; width: min-content; }\", \".framer-2bPDZ .framer-1uodhl9 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-paragraph-spacing: 0px; flex: none; height: auto; overflow: hidden; position: relative; white-space: pre-wrap; width: 567px; word-break: break-word; word-wrap: break-word; }\", \".framer-2bPDZ .framer-rv2un6 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-around; overflow: visible; padding: 100px 0px 0px 0px; position: relative; width: 1200px; }\", \".framer-2bPDZ .framer-90749l, .framer-2bPDZ .framer-1mbjv3t, .framer-2bPDZ .framer-gx9kas, .framer-2bPDZ .framer-1o89is1, .framer-2bPDZ .framer-1fbnqep { 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: 0px 0px 0px 0px; position: relative; width: min-content; }\", \".framer-2bPDZ .framer-1ky4m3k { flex: none; height: 48px; position: relative; width: 49px; }\", \".framer-2bPDZ .framer-1qpyg6w { flex: none; height: 30px; position: relative; width: 119px; }\", \".framer-2bPDZ .framer-15rinfo { flex: none; height: 49px; opacity: 0.8; position: relative; width: 73px; }\", \".framer-2bPDZ .framer-10car8i { flex: none; height: 40px; position: relative; width: 132px; }\", \".framer-2bPDZ .framer-shhfnx { flex: none; height: 38px; opacity: 0.8; position: relative; width: 42px; }\", \".framer-2bPDZ .framer-onnfhp { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 200px; height: min-content; justify-content: flex-start; overflow: visible; padding: 120px 0px 0px 0px; position: relative; width: min-content; }\", \".framer-2bPDZ .framer-1nmndub, .framer-2bPDZ .framer-1nvxnn8, .framer-2bPDZ .framer-3gx9kc { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 100px; height: min-content; justify-content: center; max-width: 1100px; overflow: visible; padding: 0px 0px 0px 0px; position: relative; width: 1100px; }\", \".framer-2bPDZ .framer-21esn9, .framer-2bPDZ .framer-156k2lf, .framer-2bPDZ .framer-1adbo0x { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px 0px 0px 0px; position: relative; width: 1px; }\", \".framer-2bPDZ .framer-40emjq, .framer-2bPDZ .framer-d79i1m, .framer-2bPDZ .framer-1fd9mxw { flex: none; height: 40px; overflow: visible; position: relative; width: 40px; }\", \".framer-2bPDZ .framer-13vkg5m-container, .framer-2bPDZ .framer-1d7v5qd-container, .framer-2bPDZ .framer-1ywm8xd-container { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 43px); left: 0px; position: absolute; right: 0px; top: 0px; }\", '.framer-2bPDZ .framer-fr9xg6 { --framer-font-family: \"Lexend Mega\", sans-serif; --framer-font-size: 64px; --framer-font-style: normal; --framer-font-weight: 800; --framer-letter-spacing: -10px; --framer-line-height: 1em; --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-text-alignment: left; --framer-text-color: #ffffff; --framer-text-decoration: none; --framer-text-transform: none; flex: none; height: auto; overflow: hidden; position: relative; text-shadow: 0px 20px 40px rgba(0, 0, 0, 0.2); white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }', '.framer-2bPDZ .framer-1bv6mh3, .framer-2bPDZ .framer-kduwoo, .framer-2bPDZ .framer-13vhizd { --framer-font-family: \"Lexend Exa\", \"Lexend Exa Placeholder\", sans-serif; --framer-font-size: 18px; --framer-font-style: normal; --framer-font-weight: 400; --framer-letter-spacing: -1.5px; --framer-line-height: 1.7em; --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-text-alignment: left; --framer-text-color: #ffffff; --framer-text-decoration: none; --framer-text-transform: none; flex: none; height: auto; opacity: 0.6; overflow: hidden; position: relative; white-space: pre-wrap; width: 377px; word-break: break-word; word-wrap: break-word; }', \".framer-2bPDZ .framer-1478p0m { flex: none; height: 393px; overflow: visible; position: relative; width: 574px; }\", \".framer-2bPDZ .framer-1h1wiom { align-content: center; align-items: center; aspect-ratio: 1.5 / 1; background: linear-gradient(130deg, rgba(68, 68, 68, 0.8) 0%, rgba(68, 68, 68, 0.6) 100%); border-bottom-left-radius: 34px; border-bottom-right-radius: 34px; border-top-left-radius: 34px; border-top-right-radius: 34px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: var(--framer-aspect-ratio-supported, 373px); justify-content: center; left: 50%; overflow: hidden; padding: 0px 0px 0px 0px; position: absolute; top: 50%; transform: translate(-50%, -50%) rotate(2deg); width: 560px; will-change: transform; }\", \".framer-2bPDZ .framer-1ofbvgw-container, .framer-2bPDZ .framer-c1zgxg-container { flex: 1 0 0px; height: 100%; position: relative; width: 1px; }\", \".framer-2bPDZ .framer-twcu7z { align-content: center; align-items: center; aspect-ratio: 1.5 / 1; background: linear-gradient(130deg, rgba(68, 68, 68, 0.8) 0%, rgba(68, 68, 68, 0.6) 100%); border-bottom-left-radius: 34px; border-bottom-right-radius: 34px; border-top-left-radius: 34px; border-top-right-radius: 34px; box-shadow: inset 1px 1px 1px 0px rgba(255, 173, 241, 0.14); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: var(--framer-aspect-ratio-supported, 373px); justify-content: center; overflow: hidden; padding: 0px 0px 0px 0px; position: relative; transform: rotate(-2deg); width: 560px; will-change: transform; }\", '.framer-2bPDZ .framer-16tyroa, .framer-2bPDZ .framer-1fhnj3 { --framer-font-family: \"Lexend Mega\", sans-serif; --framer-font-size: 64px; --framer-font-style: normal; --framer-font-weight: 800; --framer-letter-spacing: -10px; --framer-line-height: 1em; --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-text-alignment: left; --framer-text-color: #ffffff; --framer-text-decoration: none; --framer-text-transform: none; flex: none; height: auto; overflow: visible; position: relative; text-shadow: 0px 20px 40px rgba(0, 0, 0, 0.2); white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }', \".framer-2bPDZ .framer-5qspys { align-content: center; align-items: center; aspect-ratio: 1.5 / 1; background: linear-gradient(130deg, rgba(68, 68, 68, 0.8) 0%, rgba(68, 68, 68, 0.6) 100%); border-bottom-left-radius: 34px; border-bottom-right-radius: 34px; border-top-left-radius: 34px; border-top-right-radius: 34px; box-shadow: 0px 0px 80px 10px rgba(117, 16, 137, 0.4), inset 1px 1px 1px 0px hsla(310, 100%, 84%, 0.14), 0px 4px 8px 0px rgba(0,0,0,0.25); display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: var(--framer-aspect-ratio-supported, 133px); justify-content: center; overflow: hidden; padding: 0px 0px 0px 0px; position: relative; transform: rotate(-2deg); width: 1px; will-change: transform; }\", \".framer-2bPDZ .framer-fwwejl-container { flex: 1 0 0px; height: 401px; position: relative; width: 1px; }\", \".framer-2bPDZ .framer-3fbgyg { align-content: center; align-items: center; aspect-ratio: 1.5 / 1; background: linear-gradient(130deg, rgba(68, 68, 68, 0.6) 0%, rgba(68, 68, 68, 0.4) 100%); border-bottom-left-radius: 34px; border-bottom-right-radius: 34px; border-top-left-radius: 34px; border-top-right-radius: 34px; box-shadow: inset 1px 1px 1px 0px rgba(255, 173, 241, 0.14); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 40px; height: var(--framer-aspect-ratio-supported, 373px); justify-content: center; overflow: visible; padding: 0px 0px 0px 0px; position: relative; transform: rotate(2deg); width: 560px; }\", \".framer-2bPDZ .framer-6r0m1w { align-content: center; align-items: center; aspect-ratio: 1 / 1; background: linear-gradient(137deg, rgba(229, 64, 150, 0.8) 0%, hsla(226, 92%, 64%, 0.9) 100%); border-bottom-left-radius: 32px; border-bottom-right-radius: 32px; border-top-left-radius: 32px; border-top-right-radius: 32px; box-shadow: inset 1px 1px 1px 0px rgba(255, 255, 255, 0.2), 0px 10px 40px 0px rgba(0, 0, 0, 0.2); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: var(--framer-aspect-ratio-supported, 100px); justify-content: center; overflow: visible; padding: 0px 0px 0px 0px; position: relative; width: 100px; }\", \".framer-2bPDZ .framer-1avc2jk-container, .framer-2bPDZ .framer-ghjuc0-container, .framer-2bPDZ .framer-h3r9l5-container { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 53px); position: relative; width: 50px; }\", \".framer-2bPDZ .framer-w4hzpv { align-content: center; align-items: center; aspect-ratio: 1 / 1; background: linear-gradient(154deg, #7270ff 0%, hsl(0, 96%, 51%) 100%); border-bottom-left-radius: 32px; border-bottom-right-radius: 32px; border-top-left-radius: 32px; border-top-right-radius: 32px; box-shadow: inset 1px 1px 1px 0px rgba(255, 255, 255, 0.2), 0px 10px 40px 0px rgba(0, 0, 0, 0.2); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: var(--framer-aspect-ratio-supported, 100px); justify-content: center; overflow: visible; padding: 0px 0px 0px 0px; position: relative; width: 100px; }\", \".framer-2bPDZ .framer-1sookz7 { align-content: center; align-items: center; aspect-ratio: 1 / 1; background: linear-gradient(52deg, #e6289a 0%, hsl(5, 85%, 48%) 100%); border-bottom-left-radius: 32px; border-bottom-right-radius: 32px; border-top-left-radius: 32px; border-top-right-radius: 32px; box-shadow: inset 1px 1px 1px 0px rgba(255, 255, 255, 0.2), 0px 10px 40px 0px rgba(0, 0, 0, 0.2); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: var(--framer-aspect-ratio-supported, 100px); justify-content: center; overflow: visible; padding: 0px 0px 0px 0px; position: relative; width: 100px; }\", \".framer-2bPDZ .framer-h7rxkx { flex: none; height: 1239px; overflow: visible; position: relative; width: 100%; }\", \".framer-2bPDZ .framer-ckt6gv { align-content: center; align-items: center; bottom: 165px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 200px; height: min-content; justify-content: flex-start; left: 50%; overflow: visible; padding: 0px 0px 0px 0px; position: absolute; transform: translateX(-50%); width: min-content; }\", \".framer-2bPDZ .framer-1rqwjp0 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 36px; height: min-content; justify-content: center; max-width: 1100px; overflow: visible; padding: 0px 0px 0px 0px; position: relative; width: 1100px; }\", '.framer-2bPDZ .framer-1xmz3m0 { --framer-font-family: \"Lexend Mega\", sans-serif; --framer-font-size: 84px; --framer-font-style: normal; --framer-font-weight: 800; --framer-letter-spacing: -10px; --framer-line-height: 1em; --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-text-alignment: center; --framer-text-color: #ffffff; --framer-text-decoration: none; --framer-text-transform: none; flex: none; height: auto; overflow: visible; position: relative; text-shadow: 0px 20px 40px rgba(0, 0, 0, 0.2); white-space: pre-wrap; width: 870px; word-break: break-word; word-wrap: break-word; }', '.framer-2bPDZ .framer-1fnps8j { --framer-font-family: \"Lexend Exa\", \"Lexend Exa Placeholder\", sans-serif; --framer-font-size: 24px; --framer-font-style: normal; --framer-font-weight: 400; --framer-letter-spacing: -2.2px; --framer-line-height: 1.7em; --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-text-alignment: center; --framer-text-color: #ffffff; --framer-text-decoration: none; --framer-text-transform: none; flex: none; height: auto; opacity: 0.9; overflow: hidden; position: relative; white-space: pre-wrap; width: 567px; word-break: break-word; word-wrap: break-word; }', \".framer-2bPDZ .framer-2dfzf7 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px 0px 0px 0px; position: relative; width: min-content; }\", \".framer-2bPDZ .framer-run78e-container { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 23px); opacity: 0.5; position: relative; width: 20px; }\", '.framer-2bPDZ .framer-juy0h3 { --framer-font-family: \"Lexend Zetta\", sans-serif; --framer-font-size: 12px; --framer-font-style: normal; --framer-font-weight: 300; --framer-letter-spacing: 4px; --framer-line-height: 1.6em; --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-text-alignment: center; --framer-text-color: #ffffff; --framer-text-decoration: none; --framer-text-transform: none; flex: none; height: auto; opacity: 0.4; overflow: visible; position: relative; white-space: pre; width: auto; }', '.framer-2bPDZ .framer-13fnv3o { --framer-font-family: \"Lexend Zetta\", sans-serif; --framer-font-size: 12px; --framer-font-style: normal; --framer-font-weight: 300; --framer-letter-spacing: 4px; --framer-line-height: 1.6em; --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-text-alignment: center; --framer-text-color: #ffffff; --framer-text-decoration: none; --framer-text-transform: none; flex: none; height: auto; opacity: 0.5; overflow: visible; position: relative; white-space: pre; width: auto; }', \"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-2bPDZ .framer-72rtr7, .framer-2bPDZ .framer-1k74cr9, .framer-2bPDZ .framer-19ddlv5, .framer-2bPDZ .framer-ou22gf, .framer-2bPDZ .framer-1nq98vw, .framer-2bPDZ .framer-bc66ly, .framer-2bPDZ .framer-2cdgsi, .framer-2bPDZ .framer-aebpjn, .framer-2bPDZ .framer-1i5r09m, .framer-2bPDZ .framer-1wuc1y8, .framer-2bPDZ .framer-h1shxi, .framer-2bPDZ .framer-4cc48i, .framer-2bPDZ .framer-c05n2u, .framer-2bPDZ .framer-90749l, .framer-2bPDZ .framer-1mbjv3t, .framer-2bPDZ .framer-gx9kas, .framer-2bPDZ .framer-1o89is1, .framer-2bPDZ .framer-1fbnqep, .framer-2bPDZ .framer-onnfhp, .framer-2bPDZ .framer-1nmndub, .framer-2bPDZ .framer-21esn9, .framer-2bPDZ .framer-1h1wiom, .framer-2bPDZ .framer-1nvxnn8, .framer-2bPDZ .framer-twcu7z, .framer-2bPDZ .framer-156k2lf, .framer-2bPDZ .framer-5qspys, .framer-2bPDZ .framer-3gx9kc, .framer-2bPDZ .framer-1adbo0x, .framer-2bPDZ .framer-3fbgyg, .framer-2bPDZ .framer-6r0m1w, .framer-2bPDZ .framer-w4hzpv, .framer-2bPDZ .framer-1sookz7, .framer-2bPDZ .framer-ckt6gv, .framer-2bPDZ .framer-1rqwjp0, .framer-2bPDZ .framer-2dfzf7 { gap: 0px; } .framer-2bPDZ .framer-72rtr7 > *, .framer-2bPDZ .framer-1nq98vw > *, .framer-2bPDZ .framer-1wuc1y8 > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-2bPDZ .framer-72rtr7 > :first-child, .framer-2bPDZ .framer-1k74cr9 > :first-child, .framer-2bPDZ .framer-1nq98vw > :first-child, .framer-2bPDZ .framer-2cdgsi > :first-child, .framer-2bPDZ .framer-1wuc1y8 > :first-child, .framer-2bPDZ .framer-c05n2u > :first-child, .framer-2bPDZ .framer-onnfhp > :first-child, .framer-2bPDZ .framer-21esn9 > :first-child, .framer-2bPDZ .framer-156k2lf > :first-child, .framer-2bPDZ .framer-1adbo0x > :first-child, .framer-2bPDZ .framer-ckt6gv > :first-child, .framer-2bPDZ .framer-1rqwjp0 > :first-child, .framer-2bPDZ .framer-2dfzf7 > :first-child { margin-top: 0px; } .framer-2bPDZ .framer-72rtr7 > :last-child, .framer-2bPDZ .framer-1k74cr9 > :last-child, .framer-2bPDZ .framer-1nq98vw > :last-child, .framer-2bPDZ .framer-2cdgsi > :last-child, .framer-2bPDZ .framer-1wuc1y8 > :last-child, .framer-2bPDZ .framer-c05n2u > :last-child, .framer-2bPDZ .framer-onnfhp > :last-child, .framer-2bPDZ .framer-21esn9 > :last-child, .framer-2bPDZ .framer-156k2lf > :last-child, .framer-2bPDZ .framer-1adbo0x > :last-child, .framer-2bPDZ .framer-ckt6gv > :last-child, .framer-2bPDZ .framer-1rqwjp0 > :last-child, .framer-2bPDZ .framer-2dfzf7 > :last-child { margin-bottom: 0px; } .framer-2bPDZ .framer-1k74cr9 > * { margin: 0px; margin-bottom: calc(80px / 2); margin-top: calc(80px / 2); } .framer-2bPDZ .framer-19ddlv5 > *, .framer-2bPDZ .framer-bc66ly > * { margin: 0px; margin-left: calc(6px / 2); margin-right: calc(6px / 2); } .framer-2bPDZ .framer-19ddlv5 > :first-child, .framer-2bPDZ .framer-ou22gf > :first-child, .framer-2bPDZ .framer-bc66ly > :first-child, .framer-2bPDZ .framer-aebpjn > :first-child, .framer-2bPDZ .framer-1i5r09m > :first-child, .framer-2bPDZ .framer-h1shxi > :first-child, .framer-2bPDZ .framer-4cc48i > :first-child, .framer-2bPDZ .framer-90749l > :first-child, .framer-2bPDZ .framer-1mbjv3t > :first-child, .framer-2bPDZ .framer-gx9kas > :first-child, .framer-2bPDZ .framer-1o89is1 > :first-child, .framer-2bPDZ .framer-1fbnqep > :first-child, .framer-2bPDZ .framer-1nmndub > :first-child, .framer-2bPDZ .framer-1h1wiom > :first-child, .framer-2bPDZ .framer-1nvxnn8 > :first-child, .framer-2bPDZ .framer-twcu7z > :first-child, .framer-2bPDZ .framer-5qspys > :first-child, .framer-2bPDZ .framer-3gx9kc > :first-child, .framer-2bPDZ .framer-3fbgyg > :first-child, .framer-2bPDZ .framer-6r0m1w > :first-child, .framer-2bPDZ .framer-w4hzpv > :first-child, .framer-2bPDZ .framer-1sookz7 > :first-child { margin-left: 0px; } .framer-2bPDZ .framer-19ddlv5 > :last-child, .framer-2bPDZ .framer-ou22gf > :last-child, .framer-2bPDZ .framer-bc66ly > :last-child, .framer-2bPDZ .framer-aebpjn > :last-child, .framer-2bPDZ .framer-1i5r09m > :last-child, .framer-2bPDZ .framer-h1shxi > :last-child, .framer-2bPDZ .framer-4cc48i > :last-child, .framer-2bPDZ .framer-90749l > :last-child, .framer-2bPDZ .framer-1mbjv3t > :last-child, .framer-2bPDZ .framer-gx9kas > :last-child, .framer-2bPDZ .framer-1o89is1 > :last-child, .framer-2bPDZ .framer-1fbnqep > :last-child, .framer-2bPDZ .framer-1nmndub > :last-child, .framer-2bPDZ .framer-1h1wiom > :last-child, .framer-2bPDZ .framer-1nvxnn8 > :last-child, .framer-2bPDZ .framer-twcu7z > :last-child, .framer-2bPDZ .framer-5qspys > :last-child, .framer-2bPDZ .framer-3gx9kc > :last-child, .framer-2bPDZ .framer-3fbgyg > :last-child, .framer-2bPDZ .framer-6r0m1w > :last-child, .framer-2bPDZ .framer-w4hzpv > :last-child, .framer-2bPDZ .framer-1sookz7 > :last-child { margin-right: 0px; } .framer-2bPDZ .framer-ou22gf > *, .framer-2bPDZ .framer-1i5r09m > *, .framer-2bPDZ .framer-1h1wiom > *, .framer-2bPDZ .framer-twcu7z > *, .framer-2bPDZ .framer-5qspys > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-2bPDZ .framer-2cdgsi > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-2bPDZ .framer-aebpjn > * { margin: 0px; margin-left: calc(20px / 2); margin-right: calc(20px / 2); } .framer-2bPDZ .framer-h1shxi > * { margin: 0px; margin-left: calc(4px / 2); margin-right: calc(4px / 2); } .framer-2bPDZ .framer-4cc48i > *, .framer-2bPDZ .framer-90749l > *, .framer-2bPDZ .framer-1mbjv3t > *, .framer-2bPDZ .framer-gx9kas > *, .framer-2bPDZ .framer-1o89is1 > *, .framer-2bPDZ .framer-1fbnqep > *, .framer-2bPDZ .framer-6r0m1w > *, .framer-2bPDZ .framer-w4hzpv > *, .framer-2bPDZ .framer-1sookz7 > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-2bPDZ .framer-c05n2u > * { margin: 0px; margin-bottom: calc(60px / 2); margin-top: calc(60px / 2); } .framer-2bPDZ .framer-onnfhp > *, .framer-2bPDZ .framer-ckt6gv > * { margin: 0px; margin-bottom: calc(200px / 2); margin-top: calc(200px / 2); } .framer-2bPDZ .framer-1nmndub > *, .framer-2bPDZ .framer-1nvxnn8 > *, .framer-2bPDZ .framer-3gx9kc > * { margin: 0px; margin-left: calc(100px / 2); margin-right: calc(100px / 2); } .framer-2bPDZ .framer-21esn9 > *, .framer-2bPDZ .framer-156k2lf > *, .framer-2bPDZ .framer-1adbo0x > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-2bPDZ .framer-3fbgyg > * { margin: 0px; margin-left: calc(40px / 2); margin-right: calc(40px / 2); } .framer-2bPDZ .framer-1rqwjp0 > * { margin: 0px; margin-bottom: calc(36px / 2); margin-top: calc(36px / 2); } .framer-2bPDZ .framer-2dfzf7 > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } }\", \"@media (min-width: 1400px) { .framer-2bPDZ .hidden-72rtr7 { display: none !important; } }\", `@media (min-width: 810px) and (max-width: 1399px) { .framer-2bPDZ .hidden-11yik1p { display: none !important; } .${metadata.bodyClassName} { background: #000; } .framer-2bPDZ .framer-72rtr7, .framer-2bPDZ .framer-1pra0by { width: 810px; } .framer-2bPDZ .framer-14o012c { height: 1600px; } .framer-2bPDZ .framer-1tdgphz { left: calc(50.00000000000002% - 1400px / 2); top: calc(25.411764705882373% - 980px / 2); } .framer-2bPDZ .framer-1k74cr9 { left: calc(50.00000000000002% - 100% / 2); width: 100%; } .framer-2bPDZ .framer-rv2un6 { justify-content: space-evenly; padding: 50px 0px 0px 0px; width: 810px; } .framer-2bPDZ .framer-onnfhp { max-width: 600px; width: 100%; } .framer-2bPDZ .framer-1nmndub, .framer-2bPDZ .framer-1nvxnn8, .framer-2bPDZ .framer-3gx9kc { flex-direction: column; gap: 80px; width: 100%; } .framer-2bPDZ .framer-21esn9, .framer-2bPDZ .framer-156k2lf, .framer-2bPDZ .framer-1adbo0x { flex: none; width: 100%; } .framer-2bPDZ .framer-1478p0m { width: 600px; } .framer-2bPDZ .framer-1h1wiom { height: var(--framer-aspect-ratio-supported, 391px); left: 7px; right: 7px; transform: translateY(-50%) rotate(2deg); width: unset; } .framer-2bPDZ .framer-16tyroa { width: 420px; } .framer-2bPDZ .framer-5qspys { box-shadow: inset 1px 1px 1px 0px rgba(255, 173, 241, 0.14), 0px 4px 8px 0px rgba(0,0,0,0.25); flex: none; height: var(--framer-aspect-ratio-supported, 400px); width: 100%; } .framer-2bPDZ .framer-3fbgyg { height: var(--framer-aspect-ratio-supported, 400px); width: 600px; } .framer-2bPDZ .framer-h7rxkx { height: 1000px; } .framer-2bPDZ .framer-ckt6gv { bottom: unset; top: 53%; transform: translate(-50%, -50%); } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-2bPDZ .framer-1nmndub, .framer-2bPDZ .framer-1nvxnn8, .framer-2bPDZ .framer-3gx9kc { gap: 0px; } .framer-2bPDZ .framer-1nmndub > *, .framer-2bPDZ .framer-1nvxnn8 > *, .framer-2bPDZ .framer-3gx9kc > * { margin: 0px; margin-bottom: calc(80px / 2); margin-top: calc(80px / 2); } .framer-2bPDZ .framer-1nmndub > :first-child, .framer-2bPDZ .framer-1nvxnn8 > :first-child, .framer-2bPDZ .framer-3gx9kc > :first-child { margin-top: 0px; } .framer-2bPDZ .framer-1nmndub > :last-child, .framer-2bPDZ .framer-1nvxnn8 > :last-child, .framer-2bPDZ .framer-3gx9kc > :last-child { margin-bottom: 0px; } }}`, `@media (max-width: 809px) { .framer-2bPDZ .hidden-1mar9c3 { display: none !important; } .${metadata.bodyClassName} { background: #000; } .framer-2bPDZ .framer-72rtr7 { width: 390px; } .framer-2bPDZ .framer-14o012c { height: 1200px; } .framer-2bPDZ .framer-1tdgphz { left: calc(50.00000000000002% - 1400px / 2); top: calc(35.064935064935085% - 980px / 2); } .framer-2bPDZ .framer-1k74cr9 { gap: 40px; height: min-content; left: 50%; transform: translateX(-50%); width: 100%; } .framer-2bPDZ .framer-mgmat7 { height: 120px; width: 100%; } .framer-2bPDZ .framer-148vyet { --framer-font-size: 58px; --framer-letter-spacing: -9px; top: 45%; } .framer-2bPDZ .framer-8n6dj5 { left: 50%; top: 45%; transform: translate(-50%, -50%); } .framer-2bPDZ .framer-wjzbu { height: var(--framer-aspect-ratio-supported, 277px); } .framer-2bPDZ .framer-c05n2u { gap: 40px; } .framer-2bPDZ .framer-1uodhl9 { width: 312px; } .framer-2bPDZ .framer-rv2un6 { justify-content: space-evenly; padding: 50px 0px 0px 0px; width: 390px; } .framer-2bPDZ .framer-onnfhp { gap: 120px; max-width: 600px; padding: 20px 20px 20px 20px; width: 100%; } .framer-2bPDZ .framer-1nmndub, .framer-2bPDZ .framer-1nvxnn8 { flex-direction: column; gap: 60px; width: 100%; } .framer-2bPDZ .framer-21esn9, .framer-2bPDZ .framer-156k2lf, .framer-2bPDZ .framer-1adbo0x { flex: none; width: 100%; } .framer-2bPDZ .framer-fr9xg6, .framer-2bPDZ .framer-1fhnj3 { --framer-font-size: 48px; --framer-letter-spacing: -7px; } .framer-2bPDZ .framer-1bv6mh3, .framer-2bPDZ .framer-kduwoo, .framer-2bPDZ .framer-13vhizd { width: 100%; } .framer-2bPDZ .framer-1478p0m { height: 260px; width: 100%; } .framer-2bPDZ .framer-1h1wiom { border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; height: var(--framer-aspect-ratio-supported, 224px); left: 7px; right: 7px; transform: translateY(-50%) rotate(2deg); width: unset; } .framer-2bPDZ .framer-16tyroa { --framer-font-size: 48px; --framer-letter-spacing: -7px; width: 420px; } .framer-2bPDZ .framer-5qspys { box-shadow: inset 1px 1px 1px 0px rgba(255, 173, 241, 0.14), 0px 4px 8px 0px rgba(0,0,0,0.25); flex: none; height: var(--framer-aspect-ratio-supported, 233px); width: 100%; } .framer-2bPDZ .framer-3gx9kc { flex-direction: column; gap: 80px; width: 100%; } .framer-2bPDZ .framer-3fbgyg { gap: 20px; height: var(--framer-aspect-ratio-supported, 233px); width: 350px; } .framer-2bPDZ .framer-6r0m1w, .framer-2bPDZ .framer-w4hzpv, .framer-2bPDZ .framer-1sookz7 { border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; height: var(--framer-aspect-ratio-supported, 80px); width: 80px; } .framer-2bPDZ .framer-h7rxkx { height: 745px; } .framer-2bPDZ .framer-ckt6gv { bottom: unset; gap: 100px; top: 53%; transform: translate(-50%, -50%); width: 100%; } .framer-2bPDZ .framer-1rqwjp0 { max-width: 390px; padding: 20px 20px 20px 20px; width: 100%; } .framer-2bPDZ .framer-1xmz3m0 { --framer-font-size: 40px; --framer-letter-spacing: -7px; --framer-line-height: 1.1em; width: 100%; } .framer-2bPDZ .framer-1fnps8j { --framer-font-size: 20px; --framer-letter-spacing: -2px; width: 100%; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-2bPDZ .framer-1k74cr9, .framer-2bPDZ .framer-c05n2u, .framer-2bPDZ .framer-onnfhp, .framer-2bPDZ .framer-1nmndub, .framer-2bPDZ .framer-1nvxnn8, .framer-2bPDZ .framer-3gx9kc, .framer-2bPDZ .framer-3fbgyg, .framer-2bPDZ .framer-ckt6gv { gap: 0px; } .framer-2bPDZ .framer-1k74cr9 > *, .framer-2bPDZ .framer-c05n2u > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-2bPDZ .framer-1k74cr9 > :first-child, .framer-2bPDZ .framer-c05n2u > :first-child, .framer-2bPDZ .framer-onnfhp > :first-child, .framer-2bPDZ .framer-1nmndub > :first-child, .framer-2bPDZ .framer-1nvxnn8 > :first-child, .framer-2bPDZ .framer-3gx9kc > :first-child, .framer-2bPDZ .framer-ckt6gv > :first-child { margin-top: 0px; } .framer-2bPDZ .framer-1k74cr9 > :last-child, .framer-2bPDZ .framer-c05n2u > :last-child, .framer-2bPDZ .framer-onnfhp > :last-child, .framer-2bPDZ .framer-1nmndub > :last-child, .framer-2bPDZ .framer-1nvxnn8 > :last-child, .framer-2bPDZ .framer-3gx9kc > :last-child, .framer-2bPDZ .framer-ckt6gv > :last-child { margin-bottom: 0px; } .framer-2bPDZ .framer-onnfhp > * { margin: 0px; margin-bottom: calc(120px / 2); margin-top: calc(120px / 2); } .framer-2bPDZ .framer-1nmndub > *, .framer-2bPDZ .framer-1nvxnn8 > * { margin: 0px; margin-bottom: calc(60px / 2); margin-top: calc(60px / 2); } .framer-2bPDZ .framer-3gx9kc > * { margin: 0px; margin-bottom: calc(80px / 2); margin-top: calc(80px / 2); } .framer-2bPDZ .framer-3fbgyg > * { margin: 0px; margin-left: calc(20px / 2); margin-right: calc(20px / 2); } .framer-2bPDZ .framer-3fbgyg > :first-child { margin-left: 0px; } .framer-2bPDZ .framer-3fbgyg > :last-child { margin-right: 0px; } .framer-2bPDZ .framer-ckt6gv > * { margin: 0px; margin-bottom: calc(100px / 2); margin-top: calc(100px / 2); } }}`]; /**\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              * This is a generated Framer component.\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              * @framerIntrinsicHeight 4627.5\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              * @framerIntrinsicWidth 1400\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"VnBUqqa0X\":{\"layout\":[\"fixed\",\"auto\"]},\"xfAg9_bOj\":{\"layout\":[\"fixed\",\"auto\"]}}}\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              * @framerResponsiveScreen\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              */\nconst FrameraugiA20Il = withCSS(Component, css, \"framer-2bPDZ\");\nexport default FrameraugiA20Il;\nFrameraugiA20Il.displayName = \"Generated Component\";\nFrameraugiA20Il.defaultProps = {\n  height: 4627.5,\n  width: 1400\n};\naddFonts(FrameraugiA20Il, [{\n  family: \"Lexend Zetta\",\n  moduleAsset: {\n    localModuleIdentifier: \"local-module:screen/augiA20Il:default\",\n    url: \"https://fonts.gstatic.com/s/lexendzetta/v28/ll8uK2KYXje7CdOFnEWcU8synQbuVYjYB3BCy1bB0z5jbs8qbts.ttf\"\n  },\n  style: \"normal\",\n  url: \"https://fonts.gstatic.com/s/lexendzetta/v28/ll8uK2KYXje7CdOFnEWcU8synQbuVYjYB3BCy1bB0z5jbs8qbts.ttf\",\n  weight: \"800\"\n}, {\n  family: \"Lexend Mega\",\n  moduleAsset: {\n    localModuleIdentifier: \"local-module:screen/augiA20Il:default\",\n    url: \"https://fonts.gstatic.com/s/lexendmega/v24/qFdX35aBi5JtHD41zSTFEuTByuvYFuE9IbDLcf6vveyiq9EqQw.ttf\"\n  },\n  style: \"normal\",\n  url: \"https://fonts.gstatic.com/s/lexendmega/v24/qFdX35aBi5JtHD41zSTFEuTByuvYFuE9IbDLcf6vveyiq9EqQw.ttf\",\n  weight: \"800\"\n}, {\n  family: \"Lexend Exa\",\n  moduleAsset: {\n    localModuleIdentifier: \"local-module:screen/augiA20Il:default\",\n    url: \"https://fonts.gstatic.com/s/lexendexa/v30/UMBCrPdOoHOnxExyjdBeQCH18mulUxBvI9r7TqbHHJ8BRq0b.ttf\"\n  },\n  style: \"normal\",\n  url: \"https://fonts.gstatic.com/s/lexendexa/v30/UMBCrPdOoHOnxExyjdBeQCH18mulUxBvI9r7TqbHHJ8BRq0b.ttf\",\n  weight: \"400\"\n}, {\n  family: \"Lexend Zetta\",\n  moduleAsset: {\n    localModuleIdentifier: \"local-module:screen/augiA20Il:default\",\n    url: \"https://fonts.gstatic.com/s/lexendzetta/v28/ll8uK2KYXje7CdOFnEWcU8synQbuVYjYB3BCy4jG0z5jbs8qbts.ttf\"\n  },\n  style: \"normal\",\n  url: \"https://fonts.gstatic.com/s/lexendzetta/v28/ll8uK2KYXje7CdOFnEWcU8synQbuVYjYB3BCy4jG0z5jbs8qbts.ttf\",\n  weight: \"300\"\n}, ...PhosphorFonts, ...VideoFonts, ...TimelineFonts, ...ButtonFonts, ...Video1Fonts]);\nexport const __FramerMetadata__ = {\n  \"exports\": {\n    \"Props\": {\n      \"type\": \"tsType\",\n      \"annotations\": {\n        \"framerContractVersion\": \"1\"\n      }\n    },\n    \"default\": {\n      \"type\": \"reactComponent\",\n      \"name\": \"FrameraugiA20Il\",\n      \"slots\": [],\n      \"annotations\": {\n        \"framerContractVersion\": \"1\",\n        \"framerIntrinsicWidth\": \"1400\",\n        \"framerResponsiveScreen\": \"\",\n        \"framerCanvasComponentVariantDetails\": \"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"VnBUqqa0X\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"xfAg9_bOj\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\n        \"framerIntrinsicHeight\": \"4627.5\"\n      }\n    },\n    \"__FramerMetadata__\": {\n      \"type\": \"variable\"\n    }\n  }\n};"],
  "mappings": "kgBAAO,SAASA,GAAQC,EAAM,CAC5B,KAAK,MAAQ,IAAI,QAAQ,CAACC,EAASC,IAAW,CAC5C,IAAIC,EAAUC,EAAO,UAAU,KAAK,SAAS,MAAM,EACnDD,EAAQ,gBAAkBE,GAAK,CAC7B,KAAK,GAAKA,EAAE,OAAO,OACnB,KAAK,GAAG,kBAAkB,OAAO,CACnC,EACAF,EAAQ,UAAYE,GAAK,CACvB,KAAK,GAAKA,EAAE,OAAO,OACnBJ,EAAQ,CACV,EACAE,EAAQ,QAAUE,GAAK,CACrB,KAAK,GAAKA,EAAE,OAAO,OACnBH,EAAOG,CAAC,CACV,CACF,CAAC,CACH,CACAN,GAAQ,UAAU,IAAM,SAAUO,EAAK,CACrC,OAAO,KAAK,MAAM,KAAK,IACd,IAAI,QAAQ,CAACL,EAASC,IAAW,CACtC,IAAIC,EAAU,KAAK,SAAS,EAAE,IAAIG,CAAG,EACrCH,EAAQ,UAAYE,GAAKJ,EAAQI,EAAE,OAAO,MAAM,EAChDF,EAAQ,QAAUD,CACpB,CAAC,CACF,CACH,EACAH,GAAQ,UAAU,SAAW,UAAY,CACvC,OAAO,KAAK,GAAG,YAAY,CAAC,OAAO,EAAG,WAAW,EAAE,YAAY,OAAO,CACxE,EACAA,GAAQ,UAAU,IAAM,SAAUO,EAAKC,EAAO,CAC5C,OAAO,KAAK,MAAM,KAAK,IACd,IAAI,QAAQ,CAACN,EAASC,IAAW,CACtC,IAAIC,EAAU,KAAK,SAAS,EAAE,IAAII,EAAOD,CAAG,EAC5CH,EAAQ,UAAYF,EACpBE,EAAQ,QAAUD,CACpB,CAAC,CACF,CACH,EACAH,GAAQ,UAAU,OAAS,SAAUO,EAAKC,EAAO,CAC/CH,EAAO,UAAU,eAAe,SAAS,MAAM,CACjD,ECtCO,IAAMI,GAAWC,GAAKA,EAAE,MAAM,EAAE,EAAE,OAAO,CAACC,EAAGC,KAClDD,GAAKA,GAAK,GAAKA,EAAIC,EAAE,WAAW,CAAC,EAC1BD,EAAIA,GACV,CAAC,EACG,SAASE,GAAUC,EAAK,CAC7B,MAAO,uCAAuCA,GAChD,CACA,eAAsBC,GAAeD,EAAKE,EAAQ,IAAIC,GAAQ,OAAO,EAAG,CACtE,IAAMC,EAAWJ,EACXK,EAAO,MAAMH,EAAM,IAAIE,CAAQ,EACrC,GAAIC,EACF,OAAOA,EAEP,IAAIC,EAAM,IAAI,eACd,OAAAA,EAAI,KAAK,MAAON,EAAK,EAAI,EACzBM,EAAI,aAAe,OACZ,IAAI,QAAQ,CAACC,EAASC,IAAW,CACtCF,EAAI,OAAS,gBAAkB,CACzB,KAAK,SAAW,KAClB,MAAMJ,EAAM,IAAIF,EAAK,KAAK,QAAQ,EAClCO,EAAQ,KAAK,QAAQ,GAErBC,EAAO,IAAI,MAAM,mBAAmB,KAAK,UAAU,KAAK,YAAY,CAAC,CAEzE,EACAF,EAAI,QAAU,SAAUG,EAAO,CAC7BD,EAAOC,CAAK,CACd,EACAH,EAAI,KAAK,CACX,CAAC,CAEL,CACA,eAAsBI,GAAmBV,EAAKE,EAAQ,IAAIC,GAAQ,OAAO,EAAG,CAC1E,IAAMC,EAAWJ,EACXK,EAAO,MAAMH,EAAM,IAAIE,CAAQ,EACrC,OAAIC,GAGK,IAEX,CCxCO,IAAMM,GAAkB,CAC7B,SAAU,WACV,MAAO,OACP,OAAQ,OACR,QAAS,OACT,eAAgB,SAChB,WAAY,QACd,EACaC,GAAkB,CAC7B,GAAGD,GACH,aAAc,EACd,WAAY,0BACZ,MAAO,OACP,OAAQ,kBACR,cAAe,QACjB,EACaE,GAAgB,CAC3B,QAAS,CACP,KAAMC,EAAY,YACpB,EACA,aAAc,CACZ,KAAMA,EAAY,YACpB,EACA,aAAc,CACZ,KAAMA,EAAY,YACpB,CACF,EACaC,GAAkB,CAC7B,KAAMD,EAAY,OAClB,MAAO,YACP,IAAK,EACL,IAAK,IACL,KAAM,EACN,eAAgB,EAClB,EACaE,GAAe,CAC1B,KAAM,CACJ,KAAMF,EAAY,QAClB,MAAO,OACP,aAAc,GACd,cAAe,UACf,aAAc,QAChB,EACA,WAAY,CACV,KAAMA,EAAY,OAClB,MAAO,SACP,YAAa,QACb,OAAQ,CAAC,CACP,KAAAG,CACF,IAAM,CAACA,CACT,EACA,WAAY,CACV,KAAMH,EAAY,KAClB,MAAO,SACP,QAAS,CAAC,IAAK,IAAK,IAAK,IAAK,IAAK,IAAK,IAAK,IAAK,GAAG,EACrD,aAAc,CAAC,OAAQ,cAAe,QAAS,UAAW,SAAU,YAAa,OAAQ,aAAc,OAAO,EAC9G,OAAQ,CAAC,CACP,KAAAG,CACF,IAAM,CAACA,CACT,CACF,EC5DO,SAASC,GAAWC,EAASC,EAAS,CAC3C,OAAOC,GAA0B,GAAMF,EAASC,CAAO,CACzD,CACO,SAASE,GAAUC,EAAQH,EAAS,CACzC,OAAOC,GAA0B,GAAOE,EAAQH,CAAO,CACzD,CACA,SAASC,GAA0BG,EAAMC,EAAUL,EAAU,GAAM,CACjE,IAAMM,EAAaC,GAA+B,EAClDC,EAAU,IAAM,CACVR,GAAWM,IAAeF,GAAMC,EAAS,CAC/C,EAAG,CAACC,CAAU,CAAC,CACjB,CCLO,SAASG,GAAYC,EAAM,CAChC,IAAMC,EAAMC,EAAO,IAAI,EACvB,OAAID,EAAI,UAAY,OAClBA,EAAI,QAAUD,EAAK,GAEdC,EAAI,OACb,CCbO,IAAME,GAAgBC,GAAKA,aAAaC,GCAxC,IAAMC,GAAkB,IAAM,CACnC,GAAI,OAAOC,EAAc,IAAa,CACpC,IAAMC,EAAYD,EAAU,UAAU,YAAY,EAElD,OADkBC,EAAU,QAAQ,QAAQ,EAAI,IAAMA,EAAU,QAAQ,cAAc,EAAI,IAAMA,EAAU,QAAQ,SAAS,EAAI,KAAOA,EAAU,QAAQ,QAAQ,EAAI,MAE/J,OAAO,EAChB,EACaC,GAAqB,IAAMC,EAAQ,IAAMJ,GAAgB,EAAG,CAAC,CAAC,ECLpE,SAASK,GAAYC,EAAOC,EAAU,CAC3CC,EAAU,IAEVC,GAAcH,CAAK,EAAIA,EAAM,SAASC,CAAQ,EAAI,MAAS,CAC7D,CCDO,SAASG,GAAmBC,EAAYC,EAAS,CACtD,IAAIC,EAGJ,IAAMC,EAAaC,EAAOH,CAAO,EAC3BI,EAAYD,EAAO,EACnBE,EAAkBF,EAAO,EAAK,EAC9BG,EAAaC,EAAa,QAAQ,IAAMA,EAAa,OAErDC,EAAkER,GAAQ,aAAgBA,EAAQ,aAAe,CAAC,EAElHS,EAAWC,EAA8DV,GAAQ,SAAU,CAAC,GAAGQ,CAAY,CAAC,EAE5GG,EAAcD,EAAYE,GAAW,GAAAX,EAAMC,EAAW,WAAa,MAAQD,IAAQ,SAAkBA,EAAI,UAAaC,EAAW,QAAQ,UAAUU,CAAK,EAAIA,EAAO,CAAC,CAAC,EAErKA,EAAQC,GAAY,IAAMC,GAAcf,CAAU,EAAIA,EAAagB,GAAYJ,EAAYZ,CAAU,CAAC,CAAC,EAE7G,OAAAiB,EAAU,IAAM,CACd,GAAI,CAACF,GAAcf,CAAU,GAAKM,EAAgB,QAAS,CACzD,IAAIY,EAAMC,EACV,IAAMC,EAAWR,EAAYZ,CAAU,EAKvC,IAJCkB,EAAOb,EAAU,WAAa,MAAQa,IAAS,QAAkBA,EAAK,KAAK,EAExER,GAAUA,EAASU,EAAUP,CAAK,EAEhC,GAAAM,EAAOhB,EAAW,WAAa,MAAQgB,IAAS,SAAkBA,EAAK,SAAY,CAACZ,EAAY,CACpG,IAAIc,EAEJhB,EAAU,QAAUiB,GAAQT,EAAOO,GAAWC,EAAOlB,EAAW,WAAa,MAAQkB,IAAS,OAAS,OAASA,EAAK,UAAU,OAE/HR,EAAM,IAAIO,CAAQ,EAGtBd,EAAgB,QAAU,EAC5B,EAAG,CAACN,EAAY,GAAGS,CAAY,CAAC,EACzBI,CACT,CChCO,SAASU,IAAgB,CAE9B,OADiBC,EAAQ,IAAMC,EAAa,QAAQ,IAAMA,EAAa,OAAQ,CAAC,CAAC,CAEnF,CCXO,SAASC,GAAUC,EAAO,CAC/B,GAAM,CACJ,aAAAC,EACA,oBAAAC,EACA,cAAAC,EACA,eAAAC,EACA,kBAAAC,EACA,iBAAAC,CACF,EAAIN,EAEJ,OADoBO,EAAQ,IAAML,EAAsB,GAAGC,OAAmBC,OAAoBC,OAAuBC,MAAuB,GAAGL,MAAkB,CAACA,EAAcC,EAAqBC,EAAeC,EAAgBC,EAAmBC,CAAgB,CAAC,CAE9Q,CACO,IAAME,GAAsB,CACjC,aAAc,CACZ,MAAO,SACP,KAAMC,EAAY,YAClB,UAAW,sBACX,aAAc,CAAC,SAAU,mBAAmB,EAC5C,UAAW,CAAC,gBAAiB,iBAAkB,oBAAqB,kBAAkB,EACtF,YAAa,CAAC,KAAM,KAAM,KAAM,IAAI,EACpC,IAAK,CACP,CACF,EAaO,IAAMC,GAAiB,CAC5B,QAAS,CACP,KAAMC,EAAY,YAClB,UAAW,iBACX,aAAc,CAAC,UAAW,kBAAkB,EAC5C,UAAW,CAAC,aAAc,eAAgB,gBAAiB,aAAa,EACxE,YAAa,CAAC,IAAK,IAAK,IAAK,GAAG,EAChC,IAAK,EACL,MAAO,SACT,CACF,EC1CA,IAAIC,IACH,SAAUA,EAAe,CACxBA,EAAc,KAAU,OACxBA,EAAc,QAAa,UAC3BA,EAAc,MAAW,QACzBA,EAAc,KAAU,OACxBA,EAAc,UAAe,YAC/B,GAAGA,KAAkBA,GAAgB,CAAC,EAAE,EACxC,IAAIC,IACH,SAAUA,EAAU,CACnBA,EAAS,UAAe,YACxBA,EAAS,UAAe,YACxBA,EAAS,OAAY,QACvB,GAAGA,KAAaA,GAAW,CAAC,EAAE,EAC9B,IAAIC,GACH,SAAUA,EAAa,CACtBA,EAAY,KAAU,OACtBA,EAAY,SAAc,WAC1BA,EAAY,KAAU,OACtBA,EAAY,WAAgB,OAC9B,GAAGA,IAAgBA,EAAc,CAAC,EAAE,EACpC,IAAIC,GACH,SAAUA,EAAS,CAClBA,EAAQ,MAAW,SACnBA,EAAQ,IAAS,KACnB,GAAGA,IAAYA,EAAU,CAAC,EAAE,EAC5B,SAASC,GAASC,EAAO,CACvB,GAAM,CACJ,MAAAC,EACA,OAAAC,EACA,QAAAC,EACA,SAAAC,EACA,YAAAC,EACA,WAAAC,EACA,GAAAC,EACA,SAAAC,EACA,GAAGC,CACL,EAAIT,EACJ,OAAOS,CACT,CASO,SAASC,GAAMV,EAAO,CAC3B,IAAMW,EAAWZ,GAASC,CAAK,EAC/B,OAAoBY,EAAKC,GAAW,CAClC,GAAGF,CACL,CAAC,CACH,CACA,IAAME,GAAyBC,GAAK,SAAoBd,EAAO,CAC7D,GAAM,CACJ,QAAAe,EACA,QAAAC,EACA,OAAAC,EACA,QAAAC,EACA,WAAAC,EACA,SAAAC,EACA,MAAAC,EACA,YAAAC,EACA,SAAAC,EACA,QAAAC,EACA,SAAAC,EACA,UAAAC,EACA,gBAAAC,EACA,OAAAC,EACA,QAAAzB,EACA,SAAAC,EACA,YAAAC,EACA,WAAAC,EACA,QAAAuB,EACA,SAAAC,EACA,QAAAC,EACA,OAAAC,GACA,MAAAC,GACA,QAAAC,GACA,aAAAC,GACA,aAAAC,GACA,YAAAC,GACA,UAAAC,GACA,OAAAC,GACA,eAAAC,GACA,cAAAC,GACA,UAAWC,GACX,OAAAC,EACF,EAAI3C,EACE4C,EAA8BC,GAA+B,EAC7DC,GAAYJ,KAAkB,IAAM,KAAOA,GAC3CK,EAAWC,EAAO,EAClBC,EAAWD,EAAO,EAAK,EACvBE,GAAWC,GAAmB,EAC9BC,EAAmBJ,EAAO,IAAI,EAC9BK,GAAkBL,EAAO,IAAI,EAC7BM,GAAOlC,IAAaxB,GAAS,OAC7B2D,GAAWnC,IAAaxB,GAAS,UACjC4D,EAAWC,EAAQ,IAAMC,EAAa,QAAQ,IAAMA,EAAa,QAAS,CAAC,CAAC,EAC5EC,GAAgBnC,IAAY3B,EAAY,WACxC+D,GAAcpC,IAAY3B,EAAY,KACtCgE,GAAUJ,EAAQ,IAAMD,EAAW,GAAOnC,EAAO,CAACmC,EAAUnC,CAAK,CAAC,EAClEyC,GAAa,CAACN,GAAYrC,EAC1B4C,EAAWN,EAAQ,IAAMvC,EAAS,CAAC,CAAC,EACpC8C,GAAOC,EAAY,IAAM,CAC7B,IAAIC,EACAtB,KAA8BsB,EAAMnB,EAAS,WAAa,MAAQmB,IAAQ,QAAkBA,EAAI,KAAK,EAC3G,EAAG,CAAC,CAAC,EACCC,GAAQF,EAAY,IAAM,CAC9B,IAAIC,EACJ,OAAQA,EAAMnB,EAAS,WAAa,MAAQmB,IAAQ,OAAS,OAASA,EAAI,MAAM,CAClF,EAAG,CAAC,CAAC,EACCE,EAAeH,EAAY,CAACI,EAAY,KAAS,CAChDd,GAAiDS,GAAK,EAA5CM,GAAYxB,GAAWuB,CAAS,CACjD,EAAG,CAACvB,GAAWS,EAAQ,CAAC,EAClBe,GAAc,CAACC,EAAaF,GAAY,KAAU,CACtD,GAAItB,EAAS,QAAS,CACpB,IAAMyB,GAAe,KAAK,IAAIzB,EAAS,QAAQ,YAAcwB,EAAc,IAAOxB,EAAS,QAAQ,QAAQ,EAAI,GAC3GA,EAAS,QAAQ,SAAW,GAAK,CAACyB,KAAczB,EAAS,QAAQ,YAAcwB,EAAc,IAAOxB,EAAS,QAAQ,UACrHgB,GAAYD,IAAcO,IAAWL,GAAK,EAElD,EACAS,EAAU,IAAM,CACdH,GAAYxB,EAAS,CACvB,EAAG,CAACJ,GAAe1B,EAASC,CAAM,CAAC,EACnC,IAAMyD,GAAgBC,GAAmBlD,EAAU,CACjD,UAAWmD,GAASA,EAAQ,IAC5B,SAAU,CAACC,EAAUD,KAAU,CAC7BN,GAAYO,CAAQ,CACtB,CACF,CAAC,EACDC,GAAW,IAAM,CACX1B,EAAiB,UAAY,MAC7BL,EAAS,UACPP,GAAgB4B,EAAa,CAAChB,EAAiB,SAAWC,GAAgB,OAAO,GAAW,CAACA,IAAmBC,IAAQ,CAACF,EAAiB,UAASY,GAAK,EAEhK,CAAC,EACDe,GAAU,IAAM,CACVhC,EAAS,UACXM,GAAgB,QAAUN,EAAS,QAAQ,MAC3CK,EAAiB,QAAUL,EAAS,QAAQ,OAC5CoB,GAAM,EAEV,CAAC,EACD,IAAMa,GAASf,EAAY,CAACgB,EAAO,KAAU,CAC3C,GAAIlE,IAAYjB,EAAQ,IACtB,OAAOmF,EAAOC,GAAUjE,CAAM,EAAIA,EAEpC,GAAIF,IAAYjB,EAAQ,MACtB,OAAOkB,CAEX,EAAG,CAACD,EAASC,EAASC,CAAM,CAAC,EACvBkE,GAAclB,EAAY,MAAMmB,GAAW,CAC/C,GAAKA,EAEL,IADArC,EAAS,QAAUqC,EACflC,GAAU,CACZH,EAAS,QAAQ,IAASiC,GAAO,EACjC,OAEF,GAAIxD,IAAY3B,EAAY,WAAY,CACtC,GAAIoD,EAAS,QAAS,OACtB,IAAMoC,GAAML,GAAO,EAAI,EACjBM,GAAW,MAAMC,GAAeF,EAAG,EACrCC,IAAYvC,EAAS,UACvBA,EAAS,QAAQ,IAAS,IAAI,gBAAgBuC,EAAQ,EAEtDrC,EAAS,QAAU,YAEZzB,IAAY3B,EAAY,KAAM,CACvC,GAAIoD,EAAS,QAAS,OACtB,IAAMoC,GAAML,GAAO,EAAI,EACjBM,GAAW,MAAME,GAAmBH,EAAG,EACzCC,IAAYvC,EAAS,QAASA,EAAS,QAAQ,IAAS,IAAI,gBAAgBuC,EAAQ,EAAOvC,EAAS,QAAQ,IAASiC,GAAO,EAChI/B,EAAS,QAAU,IAEvB,EAAG,CAACzB,CAAO,CAAC,EACZiD,EAAU,IAAM,CACVjB,IAAUP,EAAS,QAAU,IACjCkC,GAAYpC,EAAS,OAAO,CAC9B,EAAG,CAAC/B,EAASC,EAAQF,EAAS0B,GAAetB,EAAYK,EAAS8B,GAAMS,CAAQ,CAAC,EACjFU,EAAU,IAAM,CACVvD,GAAW4C,GAAYE,GAAK,EAAOG,GAAM,CAC/C,EAAG,CAACjD,CAAO,CAAC,EACZuD,EAAU,IAAM,CACVvB,IAAYH,EAAS,SAAWgB,GAClC,WAAW,IAAM,CACfC,GAAK,CACP,EAAG,EAAE,CAET,EAAG,CAAC,CAAC,EACLS,EAAU,IAAM,CACV1B,EAAS,SAAW,CAAC1B,IAAO0B,EAAS,QAAQ,OAASJ,GAAS,IACrE,EAAG,CAACA,EAAM,CAAC,EACX,IAAM8C,GAAMhC,EAAQ,IAAMiC,GAAS,KAAK,UAAU,CAChD,QAAA3E,EACA,OAAAE,EACA,QAAAD,EACA,SAAA+C,EACA,WAAA5C,EACA,cAAAwC,EACF,CAAC,CAAC,EAAG,CAAC5C,EAASE,EAAQD,EAAS+C,EAAU5C,EAAYwC,EAAa,CAAC,EAC9DgC,GAAe9D,EAAU,GAAG1B,OAAaC,OAAcC,OAAiBC,MAAiB,GAAGsB,MAC5FgE,GAAMnC,EAAQ,KAAOE,IAAiBC,KAAgB,CAACV,GAAW,KAAO8B,GAAO,EAAG,CAAC9B,GAAUU,GAAaD,EAAa,CAAC,EAC/H,OAAoB/C,EAAK,QAAS,CAChC,SAAUmD,GAAYD,GACtB,IAAKqB,GACL,QAAAjD,GACA,aAAAC,GACA,aAAAC,GACA,YAAAC,GACA,UAAAC,GACA,OAAQG,GAAgBF,GAAS,OACjC,MAAO,CACL,MAAO,OACP,OAAQ,OACR,aAAAoD,GACA,QAAS,QACT,UAAWjE,EACX,gBAAiBC,EACjB,eAAgB,SAClB,EACA,SAAUkE,GAAK,CACT/D,GAAUA,EAAS+D,CAAC,CAC1B,EACA,QAASA,GAAK,CACR9D,GAASA,EAAQ8D,CAAC,CACxB,EACA,OAAQA,GAAK,CACP7D,IAAQA,GAAO6D,CAAC,CACtB,EACA,QAASA,GAAK,CACR5D,IAAOA,GAAM4D,CAAC,EACdvC,IAAQQ,IAAcf,EAAS,SAASqB,EAAa,CAC3D,EACA,UAAW,IAAM,CACXN,IAAcf,EAAS,SAAWgB,EAAUC,GAAK,EAAOG,GAAM,EAC9DpB,EAAS,SAAWA,EAAS,QAAQ,YAAc,IAAKuB,GAAYxB,EAAS,CACnF,EACA,IAAK8C,GACL,SAAUpC,EAAW,GAAQjC,EAC7B,MAAOsC,GACP,YAAavC,CACf,EAAGmE,EAAG,CACR,CAAC,EACD/E,GAAM,aAAe,CACnB,QAASZ,EAAQ,IACjB,OAAQ,4FACR,QAAS,GACT,cAAe,GACf,OAAQ,4DACR,SAAU,GACV,SAAU,GACV,WAAY,GACZ,SAAU,GACV,MAAO,GACP,YAAa,GACb,eAAgB,GAChB,QAASD,EAAY,KACrB,UAAWF,GAAc,MACzB,gBAAiB,gBACjB,OAAQ,EACR,OAAQ,GACR,UAAW,CACb,EACAmG,EAAoBpF,GAAO,CACzB,QAAS,CACP,KAAMqF,EAAY,KAClB,wBAAyB,GACzB,MAAO,SACP,QAAS,CAACjG,EAAQ,IAAKA,EAAQ,KAAK,CACtC,EACA,OAAQ,CACN,KAAMiG,EAAY,OAClB,MAAO,IACP,YAAa,iBACb,OAAO/F,EAAO,CACZ,OAAOA,EAAM,UAAYF,EAAQ,KACnC,CACF,EACA,QAAS,CACP,KAAMiG,EAAY,KAClB,MAAO,IACP,iBAAkB,CAAC,KAAK,EACxB,OAAO/F,EAAO,CACZ,OAAOA,EAAM,UAAYF,EAAQ,GACnC,CACF,EACA,QAAS,CACP,KAAMiG,EAAY,QAClB,MAAO,UACP,aAAc,MACd,cAAe,IACjB,EACA,cAAe,CACb,KAAMA,EAAY,QAClB,MAAO,SACP,aAAc,MACd,cAAe,IACjB,EACA,OAAQ,CACN,KAAMA,EAAY,MAClB,MAAO,IACP,aAAcrF,GAAM,aAAa,OACjC,OAAQ,CAAC,CACP,cAAA+B,CACF,IAAM,CAACA,CACT,EACA,gBAAiB,CACf,KAAMsD,EAAY,MAClB,MAAO,YACT,EACA,OAAQ,CACN,MAAO,SACP,KAAMA,EAAY,YAClB,UAAW,UACX,aAAc,CAAC,SAAU,mBAAmB,EAC5C,UAAW,CAAC,UAAW,WAAY,cAAe,YAAY,EAC9D,YAAa,CAAC,KAAM,KAAM,KAAM,IAAI,EACpC,IAAK,CACP,EACA,UAAW,CACT,MAAO,aACP,KAAMA,EAAY,OAClB,IAAK,EACL,IAAK,IACL,KAAM,GACN,KAAM,GACR,EACA,SAAU,CACR,KAAMA,EAAY,KAClB,MAAO,OACP,aAAc,CAAC,kBAAmB,iBAAkB,YAAY,EAChE,QAAS,CAACnG,GAAS,UAAWA,GAAS,UAAWA,GAAS,MAAM,CACnE,EACA,UAAW,CACT,KAAMmG,EAAY,KAClB,MAAO,MACP,QAAS,CAACpG,GAAc,MAAOA,GAAc,KAAMA,GAAc,QAASA,GAAc,UAAWA,GAAc,IAAI,CACvH,EACA,WAAY,CACV,KAAMoG,EAAY,QAClB,MAAO,YACP,aAAc,OACd,cAAe,QACf,OAAO/F,EAAO,CACZ,OAAOA,EAAM,WAAa,EAC5B,CACF,EACA,eAAgB,CACd,KAAM+F,EAAY,QAClB,MAAO,aACP,aAAc,UACd,cAAe,QACjB,EACA,SAAU,CACR,KAAMA,EAAY,QAClB,MAAO,WACP,aAAc,OACd,cAAe,MACjB,EACA,MAAO,CACL,KAAMA,EAAY,QAClB,MAAO,QACP,aAAc,MACd,cAAe,IACjB,EACA,OAAQ,CACN,KAAMA,EAAY,OAClB,IAAK,IACL,IAAK,EACL,KAAM,IACN,OAAQ,CAAC,CACP,MAAA1E,CACF,IAAMA,CACR,EAEA,QAAS,CACP,KAAM0E,EAAY,KAClB,MAAO,QACP,QAAS,CAAClG,EAAY,KAAMA,EAAY,KAAMA,EAAY,UAAU,CACtE,EACA,MAAO,CACL,KAAMkG,EAAY,YACpB,EACA,SAAU,CACR,KAAMA,EAAY,YACpB,EACA,QAAS,CACP,KAAMA,EAAY,YACpB,EACA,OAAQ,CACN,KAAMA,EAAY,YACpB,EACA,GAAGC,EACL,CAAC,EC/YM,IAAMC,GAAgBC,GAAKA,aAAaC,GCDiT,SAASC,GAAmBC,EAAWC,EAAQ,CAE/Y,IAAMC,EAAWC,EAAOF,CAAO,EAAQG,EAAUD,EAAO,EAAQE,EAAgBF,EAAO,EAAK,EAAQG,EAAWC,EAAa,QAAQ,IAAIA,EAAa,OAC/IC,EAAsDP,GAAQ,aAAcA,EAAQ,aAAa,CAAC,EAClGQ,EAASC,EAAoDT,GAAQ,SAAS,CAAC,GAAGO,CAAa,CAAC,EAChGG,EAAYD,EAAYE,GAAO,CAAC,IAAIC,EAAI,MAAQ,GAAAA,EAAIX,EAAW,WAAW,MAAMW,IAAM,SAAcA,EAAI,UAAWX,EAAW,QAAQ,UAAUU,CAAK,EAAEA,CAAM,EAAE,CAAC,CAAC,EACjKE,EAAOC,GAAY,IAAIC,GAAchB,CAAU,EAAEA,EAAWiB,GAAYN,EAAYX,CAAU,CAAC,CAAC,EACtG,OAAAkB,EAAU,IAAI,CAAC,GAAG,CAACF,GAAchB,CAAU,GAAGK,EAAgB,QAAQ,CAAC,IAAIQ,EAAIM,EAAK,IAAMC,EAAST,EAAYX,CAAU,EAEzH,IAF4Ha,EAAIT,EAAU,WAAW,MAAMS,IAAM,QAAcA,EAAI,KAAK,EACrLJ,GAASA,EAASW,EAASN,CAAM,EAC/B,GAAAK,EAAKjB,EAAW,WAAW,MAAMiB,IAAO,SAAcA,EAAK,SAAU,CAACb,EAAW,CAAC,IAAIe,EAC3FjB,EAAU,QAAQkB,GAAQR,EAAOM,GAAUC,EAAKnB,EAAW,WAAW,MAAMmB,IAAO,OAAO,OAAOA,EAAK,UAAU,OAAQP,EAAO,IAAIM,CAAQ,EAAIf,EAAgB,QAAQ,EAAK,EAAE,CAACL,EAAW,GAAGQ,CAAY,CAAC,EAASM,CAAO,CCL1N,IAAIS,IACH,SAAUA,EAAe,CACxBA,EAAc,KAAU,OACxBA,EAAc,QAAa,UAC3BA,EAAc,MAAW,QACzBA,EAAc,KAAU,OACxBA,EAAc,UAAe,YAC/B,GAAGA,KAAkBA,GAAgB,CAAC,EAAE,EACxC,IAAIC,IACH,SAAUA,EAAS,CAClBA,EAAQ,MAAW,SACnBA,EAAQ,IAAS,KACnB,GAAGA,KAAYA,GAAU,CAAC,EAAE,EAC5B,SAASC,GAASC,EAAO,CACvB,GAAM,CACJ,MAAAC,EACA,OAAAC,EACA,QAAAC,EACA,SAAAC,EACA,YAAAC,EACA,WAAAC,EACA,GAAAC,EACA,SAAAC,EACA,GAAGC,CACL,EAAIT,EACJ,OAAOS,CACT,CASO,SAASC,GAAMV,EAAO,CAC3B,IAAMW,EAAWZ,GAASC,CAAK,EAC/B,OAAoBY,EAAKC,GAAW,CAClC,GAAGF,CACL,CAAC,CACH,CACA,IAAME,GAAyBC,GAAK,SAAoBd,EAAO,CAC7D,GAAM,CACJ,QAAAe,EACA,QAAAC,EACA,OAAAC,EACA,QAAAC,EACA,WAAAC,EACA,MAAAC,EACA,YAAAC,EACA,SAAAC,EACA,SAAAC,EACA,UAAAC,EACA,gBAAAC,EACA,OAAAC,EACA,QAAAvB,EACA,SAAAC,EACA,YAAAC,EACA,WAAAC,EACA,QAAAqB,EACA,SAAAC,EACA,QAAAC,EACA,OAAAC,EACA,MAAAC,EACA,QAAAC,GACA,aAAAC,GACA,aAAAC,GACA,YAAAC,GACA,UAAAC,GACA,OAAAC,GACA,eAAAC,GACA,cAAAC,GACA,UAAWC,GACX,OAAAC,GACA,KAAAC,EACF,EAAI1C,EACE2C,GAA8BC,GAA+B,EAC7DC,EAAWC,EAAO,EAClBC,GAAWC,GAAmB,EAC9BC,EAAiBH,EAAO,EAAK,EAC7BI,EAAmBJ,EAAO,IAAI,EAC9BK,GAAkBL,EAAO,IAAI,EAC7BM,EAAaC,GAAc,EAC3BC,GAAeC,GAAUvD,CAAK,EAC9BwD,GAAYhB,KAAkB,IAAM,KAAOA,GAC3CiB,GAAa,CAACL,GAAcjC,EAC5BuC,EAAWC,EAAQ,IAAMzC,EAAS,CAAC,CAAC,EACpC0C,GAAUD,EAAQ,IAAMP,EAAa,GAAOhC,EAAO,CAACgC,EAAYhC,CAAK,CAAC,EACtEyC,GAAcC,EAAYC,GAAe,CAC7C,GAAI,CAAClB,EAAS,QAAS,OACvB,IAAMmB,IAAeD,IAAgB,EAAI,KAAQA,GAAelB,EAAS,QAAQ,SAC3EoB,GAAe,KAAK,IAAIpB,EAAS,QAAQ,YAAcmB,EAAW,EAAI,GACxEnB,EAAS,QAAQ,SAAW,GAAK,CAACoB,KACpCpB,EAAS,QAAQ,YAAcmB,GAEnC,EAAG,CAAC,CAAC,EACCE,GAAOJ,EAAY,IAAM,CAEzB,EADcjB,EAAS,QAAQ,YAAc,GAAKA,EAAS,QAAQ,WAAa,CAACA,EAAS,QAAQ,QAAU,CAACA,EAAS,QAAQ,OAASA,EAAS,QAAQ,WAAaA,EAAS,QAAQ,oBACxKA,EAAS,SAAW,CAACI,EAAe,SAAWN,KAC/DM,EAAe,QAAU,GACzBJ,EAAS,QAAQ,KAAK,EAAE,MAAMsB,IAAK,CAAC,CAAC,EACpC,QAAQ,IAAMlB,EAAe,QAAU,EAAK,EAEjD,EAAG,CAAC,CAAC,EACCmB,GAAQN,EAAY,IAAM,CAC1B,CAACjB,EAAS,SAAWI,EAAe,SACxCJ,EAAS,QAAQ,MAAM,CACzB,EAAG,CAAC,CAAC,EACLwB,EAAU,IAAM,CACVnD,GAAWuC,GAAYS,GAAK,EAAOE,GAAM,CAC/C,EAAG,CAAClD,EAASC,CAAU,CAAC,EACxBkD,EAAU,IAAM,CACdR,GAAYL,GAAY,GAAI,CAC9B,EAAG,CAAChB,GAAexB,EAASC,CAAM,CAAC,EACnC,IAAMqD,EAAgBC,GAAmBhD,EAAU,CACjD,UAAWiD,GAASA,EAAQ,IAC5B,SAAUC,GAAY,CACpBZ,GAAYY,CAAQ,CACtB,CACF,CAAC,EACDC,GAAYJ,EAAeK,GAAO,CAC5BvB,GACJS,GAAYc,CAAG,CACjB,CAAC,EACDC,GAAW,IAAM,CACX1B,EAAiB,UAAY,MAC7BL,EAAS,UAEP,CAACM,IAAmBT,IAAQ,CAACQ,EAAiB,UAASgB,GAAK,CAEpE,CAAC,EACDW,GAAU,IAAM,CACVhC,EAAS,UACXM,GAAgB,QAAUN,EAAS,QAAQ,MAC3CK,EAAiB,QAAUL,EAAS,QAAQ,OAC5CuB,GAAM,EAEV,CAAC,EACD,IAAMU,GAAMnB,EAAQ,IAAM,CACxB,GAAI5C,IAAYjB,GAAQ,IAAK,OAAOmB,EACpC,GAAIF,IAAYjB,GAAQ,MAAO,OAAOkB,CACxC,EAAG,CAACD,EAASC,EAASC,CAAM,CAAC,EAC7B,OAAAoD,EAAU,IAAM,CACVtB,IAAYF,EAAS,SAAWa,GAClC,WAAW,IAAMQ,GAAK,EAAG,EAAE,CAE/B,EAAG,CAAC,CAAC,EACLG,EAAU,IAAM,CACVxB,EAAS,SAAW,CAACzB,IAAOyB,EAAS,QAAQ,OAASJ,GAAS,IACrE,EAAG,CAACA,EAAM,CAAC,EAKS7B,EAAK,QAAS,CAChC,QAAAoB,GACA,aAAAC,GACA,aAAAC,GACA,YAAAC,GACA,UAAAC,GACA,IAAK0C,GACL,KAAMpC,GACN,IAAKG,EACL,SAAUsB,GACmDvC,IAASuC,CAAC,EAEvE,QAASA,GACkDtC,IAAQsC,CAAC,EAEpE,OAAQA,GACiDrC,IAAOqC,CAAC,EAEjE,QAASA,GAC8CpC,IAAMoC,CAAC,EAE9D,SAAUT,GAAYD,GACtB,OAAQlB,GAAgBF,GAAS,OACjC,aA3BkB,IAAM,CACpBQ,EAAS,SAAWA,EAAS,QAAQ,YAAc,IAAKgB,GAAYL,GAAY,GAAI,EACpFC,IAAcZ,EAAS,SAAWa,GAAUQ,GAAK,CACvD,EAyBE,SAAU5C,EACV,MAAOsC,GACP,YAAavC,EACb,MAAO,CACL,MAAO,OACP,OAAQ,OACR,aAAAiC,GACA,QAAS,QACT,UAAW9B,EACX,gBAAiBC,EACjB,eAAgB,SAClB,CACF,CAAC,CACH,CAAC,EACDf,GAAM,YAAc,QACpBA,GAAM,aAAe,CACnB,QAASZ,GAAQ,IACjB,OAAQ,4FACR,QAAS,GACT,cAAe,GACf,SAAU,GACV,SAAU,GACV,WAAY,GACZ,KAAM,GACN,MAAO,GACP,YAAa,GACb,eAAgB,GAChB,UAAWD,GAAc,MACzB,gBAAiB,gBACjB,OAAQ,EACR,OAAQ,GACR,UAAW,CACb,EACAkF,EAAoBrE,GAAO,CACzB,QAAS,CACP,KAAMsE,EAAY,KAClB,wBAAyB,GACzB,MAAO,SACP,QAAS,CAAClF,GAAQ,IAAKA,GAAQ,KAAK,CACtC,EACA,OAAQ,CACN,KAAMkF,EAAY,OAClB,MAAO,IACP,YAAa,iBACb,OAAOhF,EAAO,CACZ,OAAOA,EAAM,UAAYF,GAAQ,KACnC,EACA,YAAa,gEACf,EACA,QAAS,CACP,KAAMkF,EAAY,KAClB,MAAO,IACP,iBAAkB,CAAC,KAAK,EACxB,OAAOhF,EAAO,CACZ,OAAOA,EAAM,UAAYF,GAAQ,GACnC,CACF,EACA,QAAS,CACP,KAAMkF,EAAY,QAClB,MAAO,UACP,aAAc,MACd,cAAe,IACjB,EACA,cAAe,CACb,KAAMA,EAAY,QAClB,MAAO,SACP,aAAc,MACd,cAAe,IACjB,EACA,OAAQ,CACN,KAAMA,EAAY,MAClB,MAAO,IACP,OAAQ,CAAC,CACP,cAAAzC,CACF,IAAM,CAACA,CACT,EACA,gBAAiB,CACf,KAAMyC,EAAY,MAClB,MAAO,YACT,EACA,GAAGC,GACH,UAAW,CACT,MAAO,aACP,KAAMD,EAAY,OAClB,IAAK,EACL,IAAK,IACL,KAAM,GACN,KAAM,GACR,EACA,KAAM,CACJ,KAAMA,EAAY,QAClB,MAAO,OACP,aAAc,MACd,cAAe,IACjB,EACA,UAAW,CACT,KAAMA,EAAY,KAClB,MAAO,MACP,QAAS,CAACnF,GAAc,MAAOA,GAAc,KAAMA,GAAc,QAASA,GAAc,UAAWA,GAAc,IAAI,CACvH,EACA,WAAY,CACV,KAAMmF,EAAY,QAClB,MAAO,YACP,aAAc,OACd,cAAe,QACf,OAAOhF,EAAO,CACZ,OAAOA,EAAM,WAAa,EAC5B,CACF,EAOA,SAAU,CACR,KAAMgF,EAAY,QAClB,MAAO,WACP,aAAc,OACd,cAAe,MACjB,EACA,MAAO,CACL,KAAMA,EAAY,QAClB,MAAO,QACP,aAAc,MACd,cAAe,IACjB,EACA,OAAQ,CACN,KAAMA,EAAY,OAClB,IAAK,IACL,IAAK,EACL,KAAM,IACN,OAAQ,CAAC,CACP,MAAA5D,CACF,IAAMA,CACR,EACA,MAAO,CACL,KAAM4D,EAAY,YACpB,EACA,SAAU,CACR,KAAMA,EAAY,YACpB,EACA,QAAS,CACP,KAAMA,EAAY,YACpB,EACA,OAAQ,CACN,KAAMA,EAAY,YACpB,EACA,GAAGE,EACL,CAAC,EC1UM,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,GAAW,CAACC,EAAGC,IACnCC,EAAK,MAAO,CAC7B,MAAON,GACP,IAAKK,CACT,CAAC,CACJ,EC9BD,IAAIE,GAAMC,GAAEC,GAAG,CAAC,GAAG,CAACF,GAAE,CAAC,IAAM,EAAE,CAACG,EAAEC,EAAEC,IAAIA,EAAE,IAAIF,CAAC,EAAEE,EAAE,IAAIF,CAAC,EAAEC,CAAC,EAAE,KAAKE,EAAE,IAAI,IAAIA,EAAE,IAAI,OAAOH,GAAGD,EAAE,cAAcA,EAAE,SAAS,KAAKA,EAAE,cAAc,OAAO,CAAC,EAAE,2TAA2T,KAAK,OAAO,OAAOC,EAAE,cAAc,QAAQ,eAAe,QAAQ,YAAY,IAAI,CAAC,CAAC,CAAC,EAAEG,EAAE,IAAI,UAAUH,GAAGD,EAAE,cAAcA,EAAE,SAAS,KAAKA,EAAE,cAAc,OAAO,CAAC,EAAE,2TAA2T,QAAQ,KAAK,CAAC,EAAEA,EAAE,cAAc,OAAO,CAAC,EAAE,2TAA2T,KAAK,OAAO,OAAOC,EAAE,cAAc,QAAQ,eAAe,QAAQ,YAAY,IAAI,CAAC,CAAC,CAAC,EAAEG,EAAE,IAAI,OAAO,IAAIJ,EAAE,cAAcA,EAAE,SAAS,KAAKA,EAAE,cAAc,OAAO,CAAC,EAAE,8bAA8b,CAAC,CAAC,CAAC,EAAEI,EAAE,IAAI,QAAQH,GAAGD,EAAE,cAAcA,EAAE,SAAS,KAAKA,EAAE,cAAc,OAAO,CAAC,EAAE,2TAA2T,KAAK,OAAO,OAAOC,EAAE,cAAc,QAAQ,eAAe,QAAQ,YAAY,IAAI,CAAC,CAAC,CAAC,EAAEG,EAAE,IAAI,OAAOH,GAAGD,EAAE,cAAcA,EAAE,SAAS,KAAKA,EAAE,cAAc,OAAO,CAAC,EAAE,2TAA2T,KAAK,OAAO,OAAOC,EAAE,cAAc,QAAQ,eAAe,QAAQ,YAAY,GAAG,CAAC,CAAC,CAAC,EAAEG,EAAE,IAAI,UAAUH,GAAGD,EAAE,cAAcA,EAAE,SAAS,KAAKA,EAAE,cAAc,OAAO,CAAC,EAAE,2TAA2T,KAAK,OAAO,OAAOC,EAAE,cAAc,QAAQ,eAAe,QAAQ,YAAY,IAAI,CAAC,CAAC,CAAC,EAAE,IAAMI,EAAE,CAACJ,EAAEC,IAAI,EAAED,EAAEC,EAAEE,CAAC,EAAE,EAAEJ,EAAE,WAAW,CAACC,EAAEC,IAAIF,EAAE,cAAc,IAAI,CAAC,IAAIE,EAAE,GAAGD,CAAC,EAAEI,EAAEJ,EAAE,OAAOA,EAAE,KAAK,CAAC,CAAC,EAAE,EAAE,YAAY,QAAQH,GAAE,EAAE,OAAOA,EAAC,ECaj5G,IAAMQ,GAAgB,CAC3B,QAAS,CACP,KAAMC,EAAY,YACpB,EACA,YAAa,CACX,KAAMA,EAAY,YACpB,EACA,UAAW,CACT,KAAMA,EAAY,YACpB,EACA,aAAc,CACZ,KAAMA,EAAY,YACpB,EACA,aAAc,CACZ,KAAMA,EAAY,YACpB,CACF,EACMC,GAAc,CAACC,EAAKC,IAAWD,EAAI,KAAK,GAAK,EAAE,YAAY,EAAE,SAASC,CAAM,CAAC,EAW5E,SAASC,GAAiBC,EAAUC,EAAcC,EAAa,GAAIC,EAAeC,EAAuB,CAE9G,IAAMC,EAAmBC,EAAQ,IAAM,CACrC,GAAIJ,GAAc,MAAiEA,GAAW,SAAY,EAAG,OAAO,KACpH,IAAMK,EAAiBL,EAAW,YAAY,EAAE,QAAQ,QAAS,EAAE,EACnE,IAAIM,EAEJ,OADsBA,EAAkBJ,EAAsBG,CAAc,KAAO,MAAQC,IAAoB,OAASA,EAAkBC,GAAYT,EAAUO,CAAc,CAEhL,EAAG,CAACJ,EAAeD,CAAU,CAAC,EAE9B,OADaD,EAAeE,EAAgBE,CAE9C,CC7CA,IAAMK,GAAW,CAAC,WAAY,cAAe,WAAY,mBAAoB,kBAAmB,kBAAmB,eAAgB,UAAW,QAAS,cAAe,sBAAuB,YAAa,aAAc,WAAY,SAAU,eAAgB,cAAe,WAAY,YAAa,YAAa,UAAW,aAAc,cAAe,WAAY,eAAgB,gBAAiB,oBAAqB,qBAAsB,oBAAqB,kBAAmB,qBAAsB,mBAAoB,kBAAmB,mBAAoB,kBAAmB,sBAAuB,uBAAwB,kBAAmB,mBAAoB,gBAAiB,oBAAqB,qBAAsB,iBAAkB,YAAa,gBAAiB,iBAAkB,qBAAsB,sBAAuB,iBAAkB,qBAAsB,mBAAoB,kBAAmB,sBAAuB,oBAAqB,mBAAoB,oBAAqB,eAAgB,eAAgB,mBAAoB,mBAAoB,oBAAqB,iBAAkB,oBAAqB,oBAAqB,qBAAsB,kBAAmB,gBAAiB,aAAc,YAAa,gBAAiB,oBAAqB,qBAAsB,gBAAiB,iBAAkB,cAAe,kBAAmB,mBAAoB,aAAc,kBAAmB,sBAAuB,uBAAwB,gBAAiB,kBAAmB,iBAAkB,mBAAoB,gBAAiB,oBAAqB,qBAAsB,iBAAkB,kBAAmB,iBAAkB,eAAgB,kBAAmB,gBAAiB,eAAgB,gBAAiB,UAAW,cAAe,eAAgB,kBAAmB,eAAgB,WAAY,mBAAoB,uBAAwB,iBAAkB,kBAAmB,YAAa,oBAAqB,kBAAmB,UAAW,gBAAiB,iBAAkB,WAAY,KAAM,OAAQ,OAAQ,YAAa,MAAO,YAAa,WAAY,OAAQ,UAAW,UAAW,WAAY,aAAc,kBAAmB,eAAgB,cAAe,cAAe,aAAc,gBAAiB,iBAAkB,MAAO,OAAQ,cAAe,aAAc,oBAAqB,kBAAmB,cAAe,YAAa,QAAS,UAAW,OAAQ,YAAa,qBAAsB,iBAAkB,aAAc,OAAQ,OAAQ,eAAgB,WAAY,WAAY,iBAAkB,YAAa,kBAAmB,QAAS,cAAe,gBAAiB,gBAAiB,gBAAiB,iBAAkB,QAAS,SAAU,YAAa,iBAAkB,YAAa,UAAW,WAAY,MAAO,YAAa,WAAY,YAAa,MAAO,OAAQ,aAAc,WAAY,gBAAiB,gBAAiB,eAAgB,YAAa,SAAU,cAAe,MAAO,YAAa,aAAc,QAAS,sBAAuB,kBAAmB,kBAAmB,mBAAoB,gBAAiB,kBAAmB,kBAAmB,mBAAoB,gBAAiB,YAAa,YAAa,aAAc,UAAW,MAAO,iBAAkB,iBAAkB,gBAAiB,mBAAoB,iBAAkB,kBAAmB,cAAe,aAAc,mBAAoB,oBAAqB,WAAY,qBAAsB,YAAa,cAAe,WAAY,gBAAiB,OAAQ,eAAgB,mBAAoB,mBAAoB,aAAc,iBAAkB,iBAAkB,WAAY,eAAgB,mBAAoB,mBAAoB,WAAY,QAAS,cAAe,gBAAiB,QAAS,cAAe,cAAe,oBAAqB,SAAU,SAAU,eAAgB,aAAc,iBAAkB,aAAc,kBAAmB,qBAAsB,oBAAqB,cAAe,eAAgB,mBAAoB,YAAa,gBAAiB,QAAS,iBAAkB,iBAAkB,mBAAoB,QAAS,iBAAkB,eAAgB,aAAc,WAAY,iBAAkB,YAAa,YAAa,aAAc,YAAa,WAAY,OAAQ,OAAQ,aAAc,SAAU,OAAQ,UAAW,UAAW,UAAW,gBAAiB,SAAU,aAAc,OAAQ,aAAc,YAAa,YAAa,aAAc,MAAO,aAAc,OAAQ,YAAa,kBAAmB,QAAS,cAAe,OAAQ,cAAe,uBAAwB,cAAe,iBAAkB,uBAAwB,cAAe,cAAe,cAAe,cAAe,cAAe,cAAe,SAAU,WAAY,UAAW,eAAgB,eAAgB,qBAAsB,sBAAuB,eAAgB,qBAAsB,sBAAuB,UAAW,WAAY,WAAY,UAAW,UAAW,YAAa,UAAW,OAAQ,cAAe,SAAU,MAAO,OAAQ,WAAY,UAAW,kBAAmB,YAAa,kBAAmB,mBAAoB,oBAAqB,WAAY,iBAAkB,eAAgB,OAAQ,WAAY,MAAO,WAAY,QAAS,cAAe,WAAY,eAAgB,iBAAkB,qBAAsB,SAAU,SAAU,SAAU,MAAO,YAAa,WAAY,aAAc,WAAY,eAAgB,UAAW,SAAU,mBAAoB,cAAe,oBAAqB,YAAa,OAAQ,gBAAiB,cAAe,aAAc,YAAa,UAAW,WAAY,aAAc,WAAY,QAAS,QAAS,YAAa,cAAe,oBAAqB,eAAgB,OAAQ,aAAc,WAAY,cAAe,OAAQ,aAAc,OAAQ,aAAc,QAAS,aAAc,QAAS,aAAc,iBAAkB,YAAa,SAAU,cAAe,SAAU,cAAe,cAAe,mBAAoB,kBAAmB,kBAAmB,aAAc,aAAc,eAAgB,oBAAqB,mBAAoB,UAAW,WAAY,YAAa,eAAgB,aAAc,SAAU,eAAgB,iBAAkB,UAAW,QAAS,OAAQ,UAAW,eAAgB,iBAAkB,aAAc,eAAgB,kBAAmB,oBAAqB,QAAS,MAAO,OAAQ,YAAa,YAAa,UAAW,UAAW,WAAY,iBAAkB,aAAc,aAAc,mBAAoB,QAAS,sBAAuB,sBAAuB,cAAe,aAAc,aAAc,iBAAkB,gBAAiB,WAAY,OAAQ,WAAY,eAAgB,WAAY,eAAgB,WAAY,aAAc,UAAW,gBAAiB,gBAAiB,YAAa,YAAa,aAAc,OAAQ,eAAgB,aAAc,aAAc,UAAW,QAAS,gBAAiB,YAAa,UAAW,oBAAqB,QAAS,YAAa,gBAAiB,eAAgB,kBAAmB,kBAAmB,sBAAuB,qBAAsB,QAAS,YAAa,cAAe,sBAAuB,qBAAsB,QAAS,cAAe,WAAY,OAAQ,gBAAiB,YAAa,OAAQ,MAAO,YAAa,WAAY,QAAS,OAAQ,SAAU,SAAU,OAAQ,WAAY,YAAa,oBAAqB,YAAa,iBAAkB,cAAe,eAAgB,OAAQ,YAAa,aAAc,kBAAmB,uBAAwB,eAAgB,OAAQ,cAAe,aAAc,cAAe,WAAY,OAAQ,UAAW,cAAe,gBAAiB,oBAAqB,WAAY,aAAc,iBAAkB,YAAa,SAAU,iBAAkB,kBAAmB,uBAAwB,sBAAuB,SAAU,aAAc,aAAc,eAAgB,UAAW,iBAAkB,QAAS,aAAc,YAAa,kBAAmB,gBAAiB,aAAc,kBAAmB,QAAS,cAAe,QAAS,UAAW,cAAe,OAAQ,YAAa,QAAS,cAAe,YAAa,kBAAmB,aAAc,mBAAoB,kBAAmB,YAAa,oBAAqB,OAAQ,YAAa,aAAc,WAAY,UAAW,eAAgB,oBAAqB,mBAAoB,mBAAoB,mBAAoB,kBAAmB,oBAAqB,kBAAmB,oBAAqB,kBAAmB,mBAAoB,cAAe,aAAc,aAAc,aAAc,YAAa,cAAe,YAAa,oBAAqB,mBAAoB,mBAAoB,mBAAoB,kBAAmB,oBAAqB,kBAAmB,oBAAqB,kBAAmB,mBAAoB,cAAe,YAAa,aAAc,MAAO,cAAe,UAAW,UAAW,aAAc,kBAAmB,sBAAuB,cAAe,cAAe,UAAW,aAAc,kBAAmB,iBAAkB,YAAa,sBAAuB,OAAQ,QAAS,cAAe,WAAY,QAAS,MAAO,SAAU,iBAAkB,SAAU,eAAgB,aAAc,eAAgB,UAAW,SAAU,eAAgB,kBAAmB,mBAAoB,QAAS,YAAa,kBAAmB,gBAAiB,gBAAiB,aAAc,SAAU,eAAgB,mBAAoB,OAAQ,gBAAiB,QAAS,cAAe,SAAU,OAAQ,aAAc,WAAY,OAAQ,aAAc,YAAa,YAAa,UAAW,QAAS,eAAgB,eAAgB,oBAAqB,UAAW,WAAY,gBAAiB,kBAAmB,uBAAwB,UAAW,gBAAiB,qBAAsB,eAAgB,cAAe,SAAU,WAAY,QAAS,SAAU,UAAW,QAAS,UAAW,eAAgB,UAAW,SAAU,YAAa,UAAW,aAAc,SAAU,aAAc,SAAU,eAAgB,QAAS,SAAU,eAAgB,OAAQ,MAAO,YAAa,QAAS,SAAU,WAAY,aAAc,eAAgB,YAAa,eAAgB,sBAAuB,sBAAuB,mBAAoB,gBAAiB,iBAAkB,QAAS,eAAgB,SAAU,cAAe,kBAAmB,gBAAiB,aAAc,cAAe,gBAAiB,cAAe,kBAAmB,eAAgB,qBAAsB,SAAU,UAAW,iBAAkB,gBAAiB,SAAU,UAAW,UAAW,aAAc,WAAY,iBAAkB,cAAe,oBAAqB,YAAa,UAAW,oBAAqB,SAAU,cAAe,YAAa,gBAAiB,YAAa,gBAAiB,aAAc,cAAe,eAAgB,YAAa,aAAc,gBAAiB,iBAAkB,QAAS,UAAW,cAAe,aAAc,cAAe,oBAAqB,mBAAoB,oBAAqB,qBAAsB,iBAAkB,eAAgB,WAAY,UAAW,aAAc,cAAe,SAAU,aAAc,aAAc,cAAe,QAAS,cAAe,OAAQ,WAAY,WAAY,UAAW,OAAQ,aAAc,aAAc,aAAc,UAAW,WAAY,iBAAkB,MAAO,SAAU,aAAc,OAAQ,WAAY,QAAS,SAAU,QAAS,MAAO,aAAc,YAAa,SAAU,eAAgB,aAAc,mBAAoB,aAAc,WAAY,iBAAkB,WAAY,SAAU,kBAAmB,mBAAoB,gBAAiB,iBAAkB,aAAc,QAAS,YAAa,YAAa,WAAY,WAAY,aAAc,WAAY,aAAc,oBAAqB,QAAS,gBAAiB,cAAe,kBAAmB,iBAAkB,oBAAqB,aAAc,WAAY,SAAU,aAAc,QAAS,aAAc,cAAe,cAAe,OAAQ,aAAc,cAAe,QAAS,gBAAiB,cAAe,YAAa,QAAS,cAAe,OAAQ,OAAQ,gBAAiB,gBAAiB,YAAa,UAAW,WAAY,SAAU,QAAS,aAAc,cAAe,WAAY,iBAAkB,SAAU,eAAgB,OAAQ,aAAc,iBAAkB,kBAAmB,iBAAkB,YAAa,WAAY,WAAY,YAAa,WAAY,gBAAiB,aAAc,QAAS,YAAa,aAAc,UAAW,cAAe,mBAAoB,YAAa,aAAc,OAAQ,SAAU,UAAW,gBAAiB,iBAAkB,QAAS,QAAS,eAAgB,aAAc,WAAY,UAAW,aAAc,WAAY,YAAa,QAAS,OAAQ,cAAe,OAAQ,SAAU,IAAK,UAAW,UAAW,aAAa,EACh8YC,GAAgB,uCAChBC,GAAgB,CAAC,OAAQ,QAAS,UAAW,OAAQ,OAAQ,SAAS,EACtEC,GAAwBH,GAAS,OAAO,CAACI,EAAKC,KAClDD,EAAIC,EAAI,YAAY,CAAC,EAAIA,EAClBD,GACN,CAAC,CAAC,EASE,SAASE,EAAKC,EAAO,CAC1B,GAAM,CACJ,MAAAC,EACA,aAAAC,EACA,WAAAC,EACA,cAAAC,EACA,QAAAC,EACA,YAAAC,EACA,UAAAC,EACA,aAAAC,EACA,aAAAC,EACA,OAAAC,EACA,SAAAC,CACF,EAAIX,EACEY,EAAYC,EAAO,EAAK,EACxBC,EAAUC,GAAiBtB,GAAUS,EAAcC,EAAYC,EAAeR,EAAqB,EACnG,CAACoB,EAAcC,CAAe,EAAIC,GAASJ,IAAY,OAASK,GAAaC,CAAK,EAAI,IAAI,EAChG,eAAeC,GAAe,CAE5B,GAAI,CAEF,IAAMC,EAAS,MAAM,OADC,GAAG5B,KAAgBoB,eAErCF,EAAU,SAASK,EAAgBK,EAAO,QAAQF,CAAK,CAAC,CAC9D,MAAE,CACIR,EAAU,SAASK,EAAgB,IAAI,CAC7C,CACF,CACAM,EAAU,KACRX,EAAU,QAAU,GACpBS,EAAa,EACN,IAAM,CACXT,EAAU,QAAU,EACtB,GACC,CAACE,CAAO,CAAC,EAEZ,IAAMU,EADaC,EAAa,QAAQ,IAAMA,EAAa,OACdC,EAAKC,GAAW,CAAC,CAAC,EAAI,KACnE,OAAoBD,EAAKE,EAAO,IAAK,CACnC,MAAO,CACL,QAAS,UACX,EACA,QAAAvB,EACA,aAAAG,EACA,aAAAC,EACA,YAAAH,EACA,UAAAC,EACA,SAAUS,EAA4BU,EAAK,MAAO,CAChD,MAAO,6BACP,QAAS,cACT,MAAO,CACL,WAAY,OACZ,MAAO,OACP,OAAQ,OACR,QAAS,eACT,KAAMzB,EACN,WAAY,EACZ,UAAWU,EAAW,eAAiB,MACzC,EACA,UAAW,QACX,MAAOV,EACP,SAAuByB,EAAKV,EAAc,CACxC,MAAOf,EACP,OAAQS,CACV,CAAC,CACH,CAAC,EAAIc,CACP,CAAC,CACH,CACAzB,EAAK,YAAc,WACnBA,EAAK,aAAe,CAClB,MAAO,GACP,OAAQ,GACR,cAAe,QACf,WAAY,QACZ,MAAO,OACP,aAAc,GACd,OAAQ,UACR,SAAU,EACZ,EACA8B,EAAoB9B,EAAM,CACxB,aAAc,CACZ,KAAM+B,EAAY,QAClB,MAAO,SACP,aAAc,OACd,cAAe,SACf,aAAc/B,EAAK,aAAa,YAClC,EACA,cAAe,CACb,KAAM+B,EAAY,KAClB,QAASrC,GACT,aAAcM,EAAK,aAAa,cAChC,MAAO,OACP,OAAQ,CAAC,CACP,aAAAG,CACF,IAAM,CAACA,CACT,EACA,WAAY,CACV,KAAM4B,EAAY,OAClB,MAAO,OACP,YAAa,wBACb,OAAQ,CAAC,CACP,aAAA5B,CACF,IAAMA,CACR,EACA,MAAO,CACL,KAAM4B,EAAY,MAClB,MAAO,QACP,aAAc/B,EAAK,aAAa,KAClC,EACA,OAAQ,CACN,KAAM+B,EAAY,KAClB,MAAO,SACP,aAAcnC,GAAc,IAAIoC,GAASA,EAAM,OAAO,CAAC,EAAE,YAAY,EAAIA,EAAM,MAAM,CAAC,CAAC,EACvF,QAASpC,GACT,aAAcI,EAAK,aAAa,MAClC,EACA,SAAU,CACR,KAAM+B,EAAY,QAClB,aAAc,MACd,cAAe,KACf,aAAc/B,EAAK,aAAa,QAClC,EACA,GAAGiC,EACL,CAAC,EC1ID,IAAMC,GAAkB,CACtB,UAAW,CACT,MAAO,GACP,QAAS,EACX,EACA,UAAW,CACT,MAAO,GACP,QAAS,EACX,CACF,EACMC,GAAa,CAAC,YAAa,WAAW,EACtCC,GAAoB,CACxB,UAAW,mBACX,UAAW,kBACb,EACA,SAASC,GAAqBC,KAAcC,EAAU,CACpD,IAAMC,EAAgB,CAAC,EACvB,OAAoDD,GAAS,QAAQE,GAAWA,GAAW,OAAO,OAAOD,EAAeF,EAAUG,CAAO,CAAC,CAAC,EACpID,CACT,CACA,IAAME,GAA0B,CAC9B,gBAAiB,YACjB,QAAS,WACX,EACMC,GAAc,CAClB,QAAS,CACP,QAAS,GACT,MAAO,EACP,KAAM,EACN,UAAW,IACX,KAAM,QACR,CACF,EACMC,GAAa,CAAC,CAClB,MAAAC,EACA,SAAAC,CACF,IAAM,CACJ,IAAMC,EAAeC,GAAWC,EAAmB,EAC7CC,EAAaL,GAA6CE,EAAO,WACjEI,EAAqBC,EAAQ,KAAO,CACxC,GAAGL,EACH,WAAAG,CACF,GAAI,CAAC,KAAK,UAAUA,CAAU,CAAC,CAAC,EAChC,OAAoBG,EAAKJ,GAAoB,SAAU,CACrD,MAAOE,EACP,SAAUL,CACZ,CAAC,CACH,EACMQ,GAA+BC,GAAW,SAAU,CACxD,GAAAC,EACA,MAAAC,EACA,UAAAC,EACA,MAAAC,EACA,OAAAC,EACA,SAAAC,EACA,QAASC,EAAe,YACxB,MAAOC,EAAY,mBACnB,GAAGC,CACL,EAAGC,EAAK,CAEN,IAAMxB,EADiBC,GAAwBoB,CAAY,GACzBA,EAC5B,CACJ,YAAAI,EACA,WAAAC,EACA,eAAAC,EACA,gBAAAC,EACA,WAAAC,EACA,WAAApB,EACA,SAAAX,CACF,EAAIgC,GAAgB,CAClB,WAAApC,GACA,eAAgB,YAChB,gBAAAD,GACA,YAAAS,GACA,QAAAF,EACA,kBAAAL,EACF,CAAC,EACKoC,EAAmBjC,EAAS,KAAK,GAAG,EAAIyB,EAAU,iBAClDS,EAAwBC,GAAM,EACpC,OAAoBrB,EAAKsB,GAAa,CACpC,GAAId,GAAsDY,EAC1D,SAAuBpB,EAAKuB,EAAO,IAAK,CACtC,QAASnC,EACT,QAASF,EACT,aAAc,IAAM8B,EAAgB,CAClC,UAAW,EACb,CAAC,EACD,WAAY,IAAMA,EAAgB,CAChC,UAAW,EACb,CAAC,EACD,WAAY,IAAMA,EAAgB,CAChC,UAAW,EACb,CAAC,EACD,MAAO,IAAMA,EAAgB,CAC3B,UAAW,EACb,CAAC,EACD,YAAa,IAAMA,EAAgB,CACjC,UAAW,EACb,CAAC,EACD,UAAWQ,EAAG,eAAgBV,CAAU,EACxC,MAAO,CACL,QAAS,UACX,EACA,SAAuBd,EAAKT,GAAY,CACtC,MAAOM,EACP,SAAuBG,EAAKuB,EAAO,IAAK,CACtC,GAAGZ,EACH,gBAAiB,GACjB,gBAAiB,EACjB,UAAWa,EAAG,iBAAkBnB,CAAS,EACzC,mBAAoB,UACpB,iBAAkBc,EAClB,SAAU,YACV,IAAKP,EACL,MAAO,CACL,WAAY,2EACZ,uBAAwB,GACxB,wBAAyB,GACzB,oBAAqB,GACrB,qBAAsB,GACtB,UAAW,uCACX,QAAS,EACT,GAAGR,CACL,EACA,SAAU,CACR,kBAAmB,CACjB,QAAS,EACX,EACA,oBAAqB,CACnB,QAAS,EACX,EACA,kBAAmB,CACjB,QAAS,EACX,EACA,oBAAqB,CACnB,QAAS,EACX,CACF,EACA,GAAGpB,GAAqB,CACtB,kBAAmB,CACjB,gBAAiB,GACjB,mBAAoB,MACtB,EACA,oBAAqB,CACnB,gBAAiB,GACjB,mBAAoB,MACtB,EACA,kBAAmB,CACjB,gBAAiB,GACjB,mBAAoB,MACtB,EACA,oBAAqB,CACnB,gBAAiB,GACjB,mBAAoB,MACtB,EACA,UAAW,CACT,mBAAoB,eACtB,CACF,EAAG6B,EAAaE,CAAc,EAC9B,SAAuBf,EAAKyB,GAAM,CAChC,sBAAuB,GACvB,UAAW,iBACX,MAAO,CAAC,qBAAqB,EAC7B,iBAAkBN,EAClB,SAAU,YACV,QAAS,wMACT,MAAO,CACL,uBAAwB,6BACxB,qBAAsB,OACtB,sBAAuB,SACvB,uBAAwB,IACxB,0BAA2B,SAC3B,uBAAwB,MACxB,2BAA4B,mBAC5B,gCAAiC,YACjC,0BAA2B,QAC3B,sBAAuB,qBACvB,2BAA4B,OAC5B,0BAA2B,YAC3B,WAAY,+BACd,EACA,KAAMT,EACN,SAAU,CACR,UAAW,CACT,qBAAsB,OACtB,0BAA2B,QAC7B,CACF,EACA,kBAAmB,MACnB,mBAAoB,EACtB,CAAC,CACH,CAAC,CACH,CAAC,CACH,CAAC,CACH,CAAC,CACH,CAAC,EACKgB,GAAM,CAAC,sZAAuZ,kFAAmF,mDAAoD,6RAA8R,oIAAqI,wHAAyH,mXAAoX,kFAAkF,EAOvgDC,GAAkBC,GAAQ3B,GAAWyB,GAAK,cAAc,EACvDG,GAAQF,GACfA,GAAgB,YAAc,SAC9BA,GAAgB,aAAe,CAC7B,OAAQ,GACR,MAAO,GACT,EACAG,EAAoBH,GAAiB,CACnC,QAAS,CACP,QAAS,CAAC,YAAa,WAAW,EAClC,aAAc,CAAC,UAAW,eAAe,EACzC,MAAO,UACP,KAAMI,EAAY,IACpB,EACA,UAAW,CACT,aAAc,mBACd,gBAAiB,GACjB,MAAO,QACP,KAAMA,EAAY,MACpB,CACF,CAAC,EACDC,GAASL,GAAiB,CAAC,CACzB,OAAQ,eACR,YAAa,CACX,sBAAuB,iDACvB,IAAK,qGACP,EACA,MAAO,SACP,IAAK,sGACL,OAAQ,KACV,CAAC,CAAC,ECzOF,IAAMM,GAAa,CAAC,YAAa,WAAW,EACtCC,GAAoB,CACxB,UAAW,mBACX,UAAW,iBACb,EACA,SAASC,GAAqBC,KAAcC,EAAU,CACpD,IAAMC,EAAgB,CAAC,EACvB,OAAoDD,GAAS,QAAQE,GAAWA,GAAW,OAAO,OAAOD,EAAeF,EAAUG,CAAO,CAAC,CAAC,EACpID,CACT,CACA,IAAME,GAA0B,CAC9B,YAAa,YACb,YAAa,WACf,EACMC,GAAc,CAClB,QAAS,CACP,MAAO,EACP,SAAU,GACV,KAAM,CAAC,EAAG,EAAG,EAAG,CAAC,EACjB,KAAM,OACR,EACA,UAAW,CACT,MAAO,EACP,SAAU,IACV,KAAM,CAAC,EAAG,EAAG,EAAG,CAAC,EACjB,KAAM,OACR,CACF,EACMC,GAAoB,CAACC,EAAG,IAAM,yBAAyB,IACvDC,GAAa,CAAC,CAClB,MAAAC,EACA,SAAAC,CACF,IAAM,CACJ,IAAMC,EAAeC,GAAWC,EAAmB,EAC7CC,EAAaL,GAA6CE,EAAO,WACjEI,EAAqBC,EAAQ,KAAO,CACxC,GAAGL,EACH,WAAAG,CACF,GAAI,CAAC,KAAK,UAAUA,CAAU,CAAC,CAAC,EAChC,OAAoBG,EAAKJ,GAAoB,SAAU,CACrD,MAAOE,EACP,SAAUL,CACZ,CAAC,CACH,EACMQ,GAA+BC,GAAW,SAAU,CACxD,GAAAC,EACA,MAAAC,EACA,UAAAC,EACA,MAAAC,EACA,OAAAC,EACA,SAAAC,EACA,QAASC,EAAe,YACxB,GAAGC,CACL,EAAGC,EAAK,CAEN,IAAMzB,EADiBC,GAAwBsB,CAAY,GACzBA,EAC5B,CACJ,YAAAG,EACA,WAAAC,EACA,eAAAC,EACA,gBAAAC,EACA,WAAAC,EACA,WAAAnB,EACA,SAAAb,CACF,EAAIiC,GAAgB,CAClB,WAAArC,GACA,eAAgB,YAChB,YAAAQ,GACA,QAAAF,EACA,kBAAAL,EACF,CAAC,EACKqC,EAAmBlC,EAAS,KAAK,GAAG,EAAI0B,EAAU,iBAClD,CACJ,sBAAAS,EACA,MAAAC,CACF,EAAIC,GAAyBT,CAAW,EAClCU,EAAiBH,EAAsB,SAAUI,KAAS,CAC9DP,EAAW,WAAW,CACxB,CAAC,EACKQ,EAAiBL,EAAsB,SAAUI,KAAS,CAC9D,MAAMH,EAAM,IAAMJ,EAAW,WAAW,EAAG,KAAK,CAClD,CAAC,EACDS,GAAmBb,EAAa,CAC9B,QAASU,EACT,UAAWE,CACb,CAAC,EACD,IAAME,GAAwBC,GAAM,EACpC,OAAoB3B,EAAK4B,GAAa,CACpC,GAAIpB,GAAsDkB,GAC1D,SAAuB1B,EAAK6B,EAAO,IAAK,CACtC,QAAS3C,EACT,QAASF,EACT,aAAc,IAAM+B,EAAgB,CAClC,UAAW,EACb,CAAC,EACD,WAAY,IAAMA,EAAgB,CAChC,UAAW,EACb,CAAC,EACD,WAAY,IAAMA,EAAgB,CAChC,UAAW,EACb,CAAC,EACD,MAAO,IAAMA,EAAgB,CAC3B,UAAW,EACb,CAAC,EACD,YAAa,IAAMA,EAAgB,CACjC,UAAW,EACb,CAAC,EACD,UAAWe,EAAG,eAAgBjB,CAAU,EACxC,MAAO,CACL,QAAS,UACX,EACA,SAAuBb,EAAKT,GAAY,CACtC,MAAOM,EACP,SAAuBkC,EAAMF,EAAO,IAAK,CACvC,GAAGnB,EACH,UAAWoB,EAAG,iBAAkBzB,CAAS,EACzC,mBAAoB,YACpB,iBAAkB,GAClB,iBAAkBa,EAClB,SAAU,YACV,IAAKP,EACL,MAAO,CACL,GAAGP,CACL,EACA,GAAGtB,GAAqB,CACtB,UAAW,CACT,mBAAoB,WACtB,CACF,EAAG8B,EAAaE,CAAc,EAC9B,SAAU,CAAcd,EAAK6B,EAAO,IAAK,CACvC,UAAW,iBACX,iBAAkBX,EAClB,SAAU,YACV,MAAO,CACL,gBAAiB,wBACjB,uBAAwB,EACxB,wBAAyB,EACzB,oBAAqB,EACrB,qBAAsB,CACxB,EACA,kBAAmB7B,GACnB,SAAuB0C,EAAMF,EAAO,IAAK,CACvC,UAAW,iBACX,iBAAkBX,EAClB,SAAU,YACV,SAAU,CAAclB,EAAK6B,EAAO,IAAK,CACvC,UAAW,iBACX,iBAAkBX,EAClB,SAAU,YACV,MAAO,CACL,WAAY,8EACZ,uBAAwB,EACxB,wBAAyB,EACzB,oBAAqB,EACrB,qBAAsB,EACtB,UAAW,qCACX,QAAS,GACX,CACF,CAAC,EAAgBlB,EAAK6B,EAAO,IAAK,CAChC,UAAW,iBACX,iBAAkBX,EAClB,SAAU,YACV,MAAO,CACL,WAAY,8EACZ,uBAAwB,EACxB,wBAAyB,EACzB,oBAAqB,EACrB,qBAAsB,EACtB,UAAW,qCACX,QAAS,EACX,CACF,CAAC,EAAgBlB,EAAK6B,EAAO,IAAK,CAChC,UAAW,gBACX,iBAAkBX,EAClB,SAAU,YACV,MAAO,CACL,WAAY,8EACZ,uBAAwB,EACxB,wBAAyB,EACzB,oBAAqB,EACrB,qBAAsB,EACtB,UAAW,qCACX,QAAS,EACX,CACF,CAAC,EAAgBlB,EAAK6B,EAAO,IAAK,CAChC,UAAW,gBACX,iBAAkBX,EAClB,SAAU,YACV,MAAO,CACL,WAAY,8EACZ,uBAAwB,EACxB,wBAAyB,EACzB,oBAAqB,EACrB,qBAAsB,EACtB,UAAW,qCACX,QAAS,EACX,CACF,CAAC,EAAgBlB,EAAK6B,EAAO,IAAK,CAChC,UAAW,gBACX,iBAAkBX,EAClB,SAAU,YACV,MAAO,CACL,WAAY,8EACZ,uBAAwB,EACxB,wBAAyB,EACzB,oBAAqB,EACrB,qBAAsB,EACtB,UAAW,qCACX,QAAS,EACX,CACF,CAAC,CAAC,CACJ,CAAC,CACH,CAAC,EAAgBa,EAAMF,EAAO,IAAK,CACjC,UAAW,gBACX,iBAAkBX,EAClB,SAAU,YACV,SAAU,CAAclB,EAAK6B,EAAO,IAAK,CACvC,UAAW,iBACX,iBAAkBX,EAClB,SAAU,YACV,MAAO,CACL,WAAY,+DACZ,uBAAwB,EACxB,wBAAyB,EACzB,oBAAqB,EACrB,qBAAsB,EACtB,UAAW,qCACb,CACF,CAAC,EAAgBlB,EAAK6B,EAAO,IAAK,CAChC,UAAW,iBACX,iBAAkBX,EAClB,SAAU,YACV,MAAO,CACL,gBAAiB,oBACjB,uBAAwB,EACxB,wBAAyB,EACzB,oBAAqB,EACrB,qBAAsB,CACxB,CACF,CAAC,CAAC,CACJ,CAAC,CAAC,CACJ,CAAC,CACH,CAAC,CACH,CAAC,CACH,CAAC,CACH,CAAC,EACKc,GAAM,CAAC,sZAAuZ,kFAAmF,mDAAoD,uGAAwG,mUAAoU,8RAA+R,mHAAoH,oHAAqH,mHAAoH,iHAAkH,mHAAoH,sIAAuI,uIAAwI,sMAAuM,soBAAuoB,4EAA4E,EAM59FC,GAAkBC,GAAQjC,GAAW+B,GAAK,cAAc,EACvDG,GAAQF,GACfA,GAAgB,YAAc,WAC9BA,GAAgB,aAAe,CAC7B,OAAQ,GACR,MAAO,GACT,EACAG,EAAoBH,GAAiB,CACnC,QAAS,CACP,QAAS,CAAC,YAAa,WAAW,EAClC,aAAc,CAAC,YAAa,WAAW,EACvC,MAAO,UACP,KAAMI,EAAY,IACpB,CACF,CAAC,EACDC,GAASL,GAAiB,CAAC,CAAC,ECrQ5B,IAAMM,GAAcC,GAAOC,EAAK,EAC1BC,GAAgBC,GAASC,CAAQ,EACjCC,GAAaF,GAASG,EAAK,EAC3BC,GAAgBJ,GAASK,EAAQ,EACjCC,EAAkBT,GAAOU,EAAO,GAAG,EACnCC,GAAiBX,GAAOY,EAAQ,EAChCC,GAAcV,GAASW,EAAM,EAC7BC,GAAkBf,GAAOgB,CAAS,EAClCC,GAAYjB,GAAOkB,EAAG,EACtBC,GAAanB,GAAOoB,EAAI,EACxBC,GAAclB,GAASG,EAAM,EAEnC,IAAMgB,GAAc,CAClB,UAAW,6CACX,UAAW,sBACX,UAAW,oBACb,EACMC,GAAY,IAAM,OAAO,SAAa,IACtCC,GAAoB,CACxB,UAAW,mBACX,UAAW,kBACX,UAAW,kBACb,EACID,GAAU,GACZE,GAA6B,YAAaH,GAAaE,EAAiB,EAE1E,IAAME,GAA0B,CAC9B,QAAS,YACT,MAAO,YACP,OAAQ,WACV,EACMC,GAAc,CAClB,QAAS,CACP,SAAU,CACZ,CACF,EACMC,GAAY,CAChB,QAAS,EACT,OAAQ,EACR,QAAS,EACT,QAAS,EACT,MAAO,EACP,EAAG,EACH,EAAG,CACL,EACMC,GAAc,CAClB,MAAO,EACP,SAAU,IACV,KAAM,CAAC,EAAG,EAAG,EAAG,CAAC,EACjB,KAAM,OACR,EACMC,GAAa,CACjB,QAAS,EACT,OAAQ,EACR,QAAS,EACT,QAAS,EACT,MAAO,EACP,WAAYD,GACZ,EAAG,EACH,EAAG,CACL,EACME,GAAoB,CAACC,EAAG,IAAM,oBAAoB,IAClDC,GAAc,CAClB,QAAS,GACT,MAAO,IACP,KAAM,IACN,UAAW,IACX,KAAM,QACR,EACMC,GAAa,CACjB,QAAS,EACT,OAAQ,EACR,QAAS,EACT,QAAS,EACT,MAAO,EACP,WAAYD,GACZ,EAAG,EACH,EAAG,CACL,EACME,GAAa,CACjB,QAAS,KACT,OAAQ,EACR,QAAS,EACT,QAAS,EACT,MAAO,EACP,EAAG,EACH,EAAG,GACL,EACMC,GAAc,CAClB,QAAS,GACT,MAAO,IACP,KAAM,IACN,UAAW,IACX,KAAM,QACR,EACMC,GAAa,CACjB,QAAS,EACT,OAAQ,EACR,QAAS,EACT,QAAS,EACT,MAAO,EACP,WAAYD,GACZ,EAAG,EACH,EAAG,CACL,EACME,GAAa,CACjB,QAAS,EACT,OAAQ,EACR,QAAS,EACT,QAAS,EACT,MAAO,EACP,EAAG,EACH,EAAG,GACL,EACMC,GAAqB,CAACP,EAAG,IAAM,yBAAyB,IACxDQ,GAAa,CACjB,QAAS,KACT,OAAQ,EACR,QAAS,EACT,QAAS,EACT,MAAO,EACP,EAAG,EACH,EAAG,CACL,EACMC,GAAa,CACjB,QAAS,EACT,OAAQ,EACR,QAAS,EACT,QAAS,EACT,MAAO,EACP,EAAG,GACH,EAAG,EACL,EACMC,GAAc,CAClB,QAAS,GACT,MAAO,IACP,KAAM,IACN,UAAW,IACX,KAAM,QACR,EACMC,GAAa,CACjB,QAAS,EACT,OAAQ,EACR,QAAS,EACT,QAAS,EACT,MAAO,EACP,WAAYD,GACZ,EAAG,GACH,EAAG,EACL,EACME,GAAqB,CAACZ,EAAG,IAAM,GAAG,kBAClCa,GAAa,CACjB,QAAS,EACT,OAAQ,EACR,QAAS,EACT,QAAS,EACT,MAAO,EACP,EAAG,IACH,EAAG,EACL,EACMC,GAAc,CAClB,QAAS,GACT,MAAO,IACP,KAAM,IACN,UAAW,IACX,KAAM,QACR,EACMC,GAAc,CAClB,QAAS,EACT,OAAQ,EACR,QAAS,EACT,QAAS,EACT,MAAO,EACP,WAAYD,GACZ,EAAG,IACH,EAAG,EACL,EACME,GAAqB,CAAChB,EAAG,IAAM,oBAAoB,iBACnDiB,GAAqB,CAACjB,EAAG,IAAM,yBAAyB,kBACxDkB,EAAc,CAClB,QAAS,EACT,OAAQ,EACR,QAAS,EACT,QAAS,EACT,MAAO,EACP,EAAG,EACH,EAAG,GACL,EACMC,GAAc,CAClB,QAAS,GACT,MAAO,EACP,KAAM,IACN,UAAW,IACX,KAAM,QACR,EACMC,GAAc,CAClB,QAAS,EACT,OAAQ,EACR,QAAS,EACT,QAAS,EACT,MAAO,EACP,WAAYD,GACZ,EAAG,EACH,EAAG,GACL,EACME,GAAc,CAClB,QAAS,GACT,MAAO,GACP,KAAM,IACN,UAAW,IACX,KAAM,QACR,EACMC,GAAc,CAClB,QAAS,EACT,OAAQ,EACR,QAAS,EACT,QAAS,EACT,MAAO,EACP,WAAYD,GACZ,EAAG,EACH,EAAG,GACL,EACME,GAAc,CAClB,QAAS,GACT,MAAO,GACP,KAAM,IACN,UAAW,IACX,KAAM,QACR,EACMC,GAAc,CAClB,QAAS,EACT,OAAQ,EACR,QAAS,EACT,QAAS,EACT,MAAO,EACP,WAAYD,GACZ,EAAG,EACH,EAAG,GACL,EACME,GAAc,CAClB,QAAS,GACT,MAAO,GACP,KAAM,IACN,UAAW,IACX,KAAM,QACR,EACMC,GAAc,CAClB,QAAS,EACT,OAAQ,EACR,QAAS,EACT,QAAS,EACT,MAAO,EACP,WAAYD,GACZ,EAAG,EACH,EAAG,GACL,EACME,GAAe,CACnB,QAAS,GACT,MAAO,GACP,KAAM,IACN,UAAW,IACX,KAAM,QACR,EACMC,GAAc,CAClB,QAAS,EACT,OAAQ,EACR,QAAS,EACT,QAAS,EACT,MAAO,EACP,WAAYD,GACZ,EAAG,EACH,EAAG,GACL,EACME,GAAc,CAClB,QAAS,EACT,OAAQ,EACR,QAAS,EACT,QAAS,EACT,MAAO,GACP,EAAG,EACH,EAAG,EACL,EACMC,GAAc,CAClB,QAAS,EACT,OAAQ,EACR,QAAS,EACT,QAAS,EACT,MAAO,GACP,WAAYL,GACZ,EAAG,EACH,EAAG,EACL,EACMM,GAAqB,CAAC/B,EAAG,IAAM,yBAAyB,iBACxDgC,GAAc,CAClB,QAAS,EACT,OAAQ,EACR,QAAS,EACT,QAAS,EACT,MAAO,GACP,WAAYL,GACZ,EAAG,EACH,EAAG,EACL,EACMM,GAAqB,CAACjC,EAAG,IAAM,GAAG,iBAClCkC,GAAe,CACnB,QAAS,GACT,MAAO,GACP,KAAM,IACN,UAAW,IACX,KAAM,QACR,EACMC,GAAc,CAClB,QAAS,EACT,OAAQ,EACR,QAAS,EACT,QAAS,EACT,MAAO,EACP,WAAYD,GACZ,EAAG,EACH,EAAG,CACL,EACME,GAAe,CACnB,QAAS,GACT,MAAO,GACP,KAAM,IACN,UAAW,IACX,KAAM,QACR,EACMC,GAAc,CAClB,QAAS,EACT,OAAQ,EACR,QAAS,EACT,QAAS,EACT,MAAO,EACP,WAAYD,GACZ,EAAG,EACH,EAAG,CACL,EACME,GAAe,CACnB,QAAS,GACT,MAAO,GACP,KAAM,IACN,UAAW,IACX,KAAM,QACR,EACMC,GAAc,CAClB,QAAS,EACT,OAAQ,EACR,QAAS,EACT,QAAS,EACT,MAAO,EACP,WAAYD,GACZ,EAAG,EACH,EAAG,CACL,EACME,GAAc,CAClB,QAAS,EACT,OAAQ,EACR,QAAS,EACT,QAAS,EACT,MAAO,EACP,EAAG,EACH,EAAG,GACL,EACMC,GAAe,CACnB,MAAO,EACP,SAAU,EACV,KAAM,CAAC,IAAK,IAAK,GAAI,CAAC,EACtB,KAAM,OACR,EACMC,GAAc,CAClB,QAAS,EACT,OAAQ,EACR,QAAS,EACT,QAAS,EACT,MAAO,EACP,WAAYD,GACZ,EAAG,EACH,EAAG,GACL,EACME,GAAc,CAClB,QAAS,EACT,OAAQ,EACR,QAAS,EACT,QAAS,EACT,MAAO,EACP,EAAG,EACH,EAAG,GACL,EACMC,GAAe,CACnB,MAAO,EACP,SAAU,EACV,KAAM,CAAC,EAAG,GAAI,GAAI,CAAC,EACnB,KAAM,OACR,EACMC,GAAc,CAClB,QAAS,EACT,OAAQ,EACR,QAAS,EACT,QAAS,EACT,MAAO,EACP,WAAYD,GACZ,EAAG,EACH,EAAG,GACL,EACME,GAAe,CACnB,MAAO,GACP,SAAU,EACV,KAAM,CAAC,EAAG,GAAI,GAAI,CAAC,EACnB,KAAM,OACR,EACMC,GAAc,CAClB,QAAS,EACT,OAAQ,EACR,QAAS,EACT,QAAS,EACT,MAAO,EACP,WAAYD,GACZ,EAAG,EACH,EAAG,GACL,EACME,GAAWC,GAAiB,EAC5BC,GAA+BC,GAAW,SAAU,CACxD,GAAAC,EACA,MAAAC,EACA,UAAAC,EACA,MAAAC,EACA,OAAAC,EACA,SAAAC,EACA,QAASC,EAAe,YACxB,GAAGC,CACL,EAAGC,EAAK,CAEN,IAAMC,EADiBnE,GAAwBgE,CAAY,GACzBA,EAC5BI,GAAgB,IAAM,CAC1B,IAAMC,EAAYd,GAAiB,EAEnC,GADA,SAAS,MAAQc,EAAU,OAAS,GAChCA,EAAU,SAAU,CACtB,IAAIH,GACHA,EAAM,SAAS,cAAc,uBAAuB,KAAO,MAAQA,IAAQ,QAAkBA,EAAI,aAAa,UAAWG,EAAU,QAAQ,EAE1IA,EAAU,gBACZ,MAAM,KAAK,SAAS,KAAK,SAAS,EAAE,OAAOC,GAAKA,EAAE,WAAW,cAAc,CAAC,EAAE,IAAIA,GAAK,SAAS,KAAK,UAAU,OAAOA,CAAC,CAAC,EACxH,SAAS,KAAK,UAAU,IAAID,EAAU,aAAa,EAEvD,EAAG,CAAC,CAAC,EACL,GAAM,CAACE,EAAaC,CAAmB,EAAIC,GAA8BN,EAASvE,GAAa,EAAK,EAC9F8E,EAAiB,OACjBC,EAAa1E,GAAY,QACzB2E,EAAc,IACdL,IAAgB,YAAoB,GACjC,CAAC1E,GAAU,EAEdgF,EAAe,IACfN,IAAgB,YAAoB,CAAC1E,GAAU,EAC5C,GAEHiF,EAAe,IACf,CAAC,YAAa,WAAW,EAAE,SAASP,CAAW,EAAU,CAAC1E,GAAU,EACjE,GAEHkF,EAAe,IACf,CAAC,YAAa,WAAW,EAAE,SAASR,CAAW,EAAU,GACtD,CAAC1E,GAAU,EAEdmF,EAAwBC,GAAM,EACpC,OAAoBC,EAAKC,GAA0B,SAAU,CAC3D,MAAO,CACL,iBAAkB,YAClB,kBAAArF,EACF,EACA,SAAuBoF,EAAKE,GAAa,CACvC,GAAIrB,GAAsDiB,EAC1D,SAAuBK,EAAMC,EAAO,IAAK,CACvC,UAAWC,EAAG,cAAc,EAC5B,MAAO,CACL,QAAS,UACX,EACA,SAAU,CAAcF,EAAMC,EAAO,IAAK,CACxC,GAAGrB,EACH,UAAWsB,EAAG,gBAAiB3B,CAAS,EACxC,IAAKM,EACL,MAAO,CACL,GAAGP,CACL,EACA,SAAU,CAAc0B,EAAMC,EAAO,IAAK,CACxC,UAAW,iBACX,SAAU,CAAcJ,EAAKM,GAAa,CACxC,kBAAmB,CACjB,WAAYrF,EACd,EACA,sBAAuB,GACvB,gBAAiBD,GACjB,eAAgBE,GAChB,mCAAoC,GACpC,oBAAqB,GACrB,gBAAiB,GACjB,gBAAiB,EACjB,WAAY,CACV,IAAK,GACL,IAAK,OACL,gBAAiB,KACjB,eAAgB,KAChB,YAAa,KACb,WAAY,KACZ,MAAO,SACP,IAAK,IAAI,IAAI,sEAAsE,EAAE,KACrF,OAAQ,GAAG,IAAI,IAAI,wFAAwF,EAAE,cAAc,IAAI,IAAI,yFAAyF,EAAE,eAAe,IAAI,IAAI,yFAAyF,EAAE,eAAe,IAAI,IAAI,sEAAsE,EAAE,YACjb,EACA,UAAW,iBACX,mBAAoB,YACpB,KAAM,WACR,CAAC,EAAgB8E,EAAKO,EAAmB,CACvC,WAAYlB,EACZ,UAAW,CACT,UAAW,CACT,kBAAAlE,EACF,CACF,EACA,SAAuBgF,EAAMC,EAAO,IAAK,CACvC,UAAW,iBACX,mBAAoB,UACpB,KAAM,UACN,SAAU,CAAcJ,EAAKO,EAAmB,CAC9C,WAAYlB,EACZ,UAAW,CACT,UAAW,CACT,wBAAyB,SACzB,QAASmB,EAAe,UAAW,SAAUlF,GAAY,SAAS,EAClE,QAASkF,EAAe,UAAW,SAAUjF,GAAY,SAAS,CACpE,EACA,UAAW,CACT,wBAAyB,UACzB,QAASiF,EAAe,UAAW,UAAWlF,GAAY,SAAS,EACnE,QAASkF,EAAe,UAAW,UAAWjF,GAAY,SAAS,CACrE,CACF,EACA,SAAuB4E,EAAMC,EAAO,IAAK,CACvC,QAASI,EAAe,UAAW,UAAWlF,GAAY,QAAQ,EAClE,UAAW,iBACX,wBAAyB,UACzB,mBAAoB,OACpB,QAASkF,EAAe,UAAW,UAAWjF,GAAY,QAAQ,EAClE,KAAM,OACN,SAAU,CAAcyE,EAAKS,EAAW,CACtC,UAAW,2BACX,SAAuBT,EAAKU,EAAU,CACpC,MAAO,qBACP,OAAQ,OACR,WAAY,QACZ,cAAe,WACf,GAAI,YACJ,SAAU,YACV,SAAU,GACV,aAAc,GACd,MAAO,CACL,OAAQ,OACR,MAAO,MACT,EACA,OAAQ,UACR,MAAO,MACT,CAAC,CACH,CAAC,EAAgBV,EAAKW,GAAM,CAC1B,sBAAuB,GACvB,UAAW,iBACX,MAAO,CAAC,qBAAqB,EAC7B,QAAS,gMACT,kBAAmB,MACnB,mBAAoB,EACtB,CAAC,CAAC,CACJ,CAAC,CACH,CAAC,EAAgBX,EAAKO,EAAmB,CACvC,WAAYlB,EACZ,UAAW,CACT,UAAW,CACT,wBAAyB,SACzB,QAASmB,EAAe,UAAW,SAAU/E,GAAY,SAAS,EAClE,QAAS+E,EAAe,UAAW,SAAU9E,GAAY,SAAS,CACpE,EACA,UAAW,CACT,wBAAyB,SACzB,QAAS8E,EAAe,UAAW,SAAU/E,GAAY,SAAS,EAClE,QAAS+E,EAAe,UAAW,SAAU9E,GAAY,SAAS,CACpE,CACF,EACA,SAAuByE,EAAMC,EAAO,IAAK,CACvC,QAASI,EAAe,UAAW,SAAU/E,GAAY,QAAQ,EACjE,UAAW,gBACX,wBAAyB,SACzB,QAAS+E,EAAe,UAAW,SAAU9E,GAAY,QAAQ,EACjE,SAAU,CAAcsE,EAAKW,GAAM,CACjC,sBAAuB,GACvB,UAAW,SACX,UAAW,iBACX,MAAO,CAAC,oBAAoB,EAC5B,QAAS,qRACT,kBAAmBhF,GACnB,kBAAmB,MACnB,mBAAoB,EACtB,CAAC,EAAgBqE,EAAKO,EAAmB,CACvC,WAAYlB,EACZ,UAAW,CACT,UAAW,CACT,wBAAyB,SACzB,QAASmB,EAAe,UAAW,SAAU/E,GAAY,SAAS,EAClE,QAAS+E,EAAe,UAAW,SAAU5E,GAAY,SAAS,CACpE,EACA,UAAW,CACT,wBAAyB,SACzB,QAAS4E,EAAe,UAAW,SAAU/E,GAAY,SAAS,EAClE,SAAuB0E,EAAYS,GAAU,CAC3C,SAAU,CAAcZ,EAAK,IAAK,CAChC,MAAO,CACL,kBAAmB,2BACnB,uBAAwB,4BACxB,qBAAsB,OACtB,uBAAwB,MACxB,0BAA2B,OAC3B,uBAAwB,MACxB,0BAA2B,SAC3B,sBAAuB,oBACzB,EACA,SAAU,WACZ,CAAC,EAAgBA,EAAK,IAAK,CACzB,MAAO,CACL,kBAAmB,2BACnB,uBAAwB,4BACxB,qBAAsB,OACtB,uBAAwB,MACxB,0BAA2B,OAC3B,uBAAwB,MACxB,0BAA2B,SAC3B,sBAAuB,oBACzB,EACA,SAAU,UACZ,CAAC,CAAC,CACJ,CAAC,EACD,QAASQ,EAAe,UAAW,SAAU5E,GAAY,SAAS,EAClE,kBAAmBiF,GAAgC,SAAUlF,EAAkB,CACjF,CACF,EACA,SAAuBqE,EAAKc,GAAU,CACpC,sBAAuB,GACvB,QAASN,EAAe,UAAW,SAAU/E,GAAY,QAAQ,EACjE,SAAuB0E,EAAYS,GAAU,CAC3C,SAAU,CAAcZ,EAAK,IAAK,CAChC,MAAO,CACL,kBAAmB,2BACnB,uBAAwB,4BACxB,qBAAsB,OACtB,uBAAwB,MACxB,0BAA2B,QAC3B,uBAAwB,MACxB,0BAA2B,SAC3B,sBAAuB,oBACzB,EACA,SAAU,WACZ,CAAC,EAAgBA,EAAK,IAAK,CACzB,MAAO,CACL,kBAAmB,2BACnB,uBAAwB,4BACxB,qBAAsB,OACtB,uBAAwB,MACxB,0BAA2B,QAC3B,uBAAwB,MACxB,0BAA2B,SAC3B,sBAAuB,oBACzB,EACA,SAAU,UACZ,CAAC,CAAC,CACJ,CAAC,EACD,UAAW,gBACX,wBAAyB,SACzB,MAAO,CAAC,oBAAoB,EAC5B,QAASQ,EAAe,UAAW,SAAU5E,GAAY,QAAQ,EACjE,kBAAmB,MACnB,mBAAoB,EACtB,CAAC,CACH,CAAC,CAAC,CACJ,CAAC,CACH,CAAC,EAAG8D,EAAY,GAAkBM,EAAKI,EAAO,IAAK,CACjD,UAAW,6CACX,mBAAoB,QACpB,KAAM,QACN,SAAuBJ,EAAKO,EAAmB,CAC7C,WAAYlB,EACZ,UAAW,CACT,UAAW,CACT,WAAY,CACV,IAAK,GACL,IAAK,OACL,gBAAiB,IACjB,eAAgB,IAChB,YAAa,IACb,WAAY,IACZ,MAAO,oBACP,IAAK,IAAI,IAAI,sFAAsF,EAAE,KACrG,OAAQ,GAAG,IAAI,IAAI,sFAAsF,EAAE,cAAc,IAAI,IAAI,oEAAoE,EAAE,WACzM,CACF,CACF,EACA,SAAuBW,EAAKe,GAAO,CACjC,WAAY,CACV,IAAK,GACL,IAAK,OACL,gBAAiB,IACjB,eAAgB,IAChB,YAAa,IACb,WAAY,IACZ,IAAK,IAAI,IAAI,sFAAsF,EAAE,KACrG,OAAQ,GAAG,IAAI,IAAI,sFAAsF,EAAE,cAAc,IAAI,IAAI,oEAAoE,EAAE,WACzM,EACA,UAAW,eACX,mBAAoB,cACpB,KAAM,aACR,CAAC,CACH,CAAC,CACH,CAAC,EAAGpB,EAAa,GAAkBQ,EAAMC,EAAO,IAAK,CACnD,UAAW,gCACX,mBAAoB,UACpB,KAAM,UACN,SAAU,CAAcD,EAAMa,EAAiB,CAC7C,kBAAmB,CACjB,WAAYlF,EACd,EACA,sBAAuB,GACvB,gBAAiBD,GACjB,eAAgBE,GAChB,mCAAoC,GACpC,oBAAqB,GACrB,gBAAiB,GACjB,gBAAiB,EACjB,UAAW,iBACX,mBAAoB,SACpB,KAAM,SACN,kBAAmBC,GACnB,SAAU,CAAcmE,EAAMC,EAAO,IAAK,CACxC,UAAW,gBACX,SAAU,CAAcD,EAAMC,EAAO,IAAK,CACxC,UAAW,gBACX,SAAU,CAAcJ,EAAKI,EAAO,IAAK,CACvC,UAAW,gBACb,CAAC,EAAgBJ,EAAKI,EAAO,IAAK,CAChC,UAAW,eACb,CAAC,EAAgBJ,EAAKI,EAAO,IAAK,CAChC,UAAW,eACb,CAAC,CAAC,CACJ,CAAC,EAAgBJ,EAAKI,EAAO,IAAK,CAChC,UAAW,iBACX,SAAuBJ,EAAKS,EAAW,CACrC,UAAW,0BACX,kBAAmB9E,GACnB,SAAuBqE,EAAKU,EAAU,CACpC,MAAO,qBACP,OAAQ,OACR,WAAY,QACZ,cAAe,WACf,GAAI,YACJ,SAAU,YACV,SAAU,GACV,aAAc,GACd,MAAO,CACL,OAAQ,OACR,MAAO,MACT,EACA,OAAQ,UACR,MAAO,MACT,CAAC,CACH,CAAC,CACH,CAAC,EAAgBV,EAAKI,EAAO,IAAK,CAChC,UAAW,iBACX,SAAuBJ,EAAKS,EAAW,CACrC,UAAW,0BACX,kBAAmB9E,GACnB,SAAuBqE,EAAKU,EAAU,CACpC,MAAO,qBACP,OAAQ,OACR,WAAY,QACZ,cAAe,WACf,GAAI,YACJ,SAAU,YACV,SAAU,GACV,aAAc,GACd,MAAO,CACL,OAAQ,OACR,MAAO,MACT,EACA,OAAQ,UACR,MAAO,MACT,CAAC,CACH,CAAC,CACH,CAAC,CAAC,CACJ,CAAC,EAAgBP,EAAMC,EAAO,IAAK,CACjC,UAAW,gBACX,SAAU,CAAcD,EAAMC,EAAO,IAAK,CACxC,UAAW,gBACX,SAAU,CAAcJ,EAAKI,EAAO,IAAK,CACvC,WAAY,CACV,IAAK,GACL,IAAK,OACL,gBAAiB,KACjB,eAAgB,KAChB,YAAa,KACb,WAAY,KACZ,IAAK,IAAI,IAAI,yFAAyF,EAAE,IAC1G,EACA,UAAW,iBACX,SAAuBJ,EAAKS,EAAW,CACrC,UAAW,2BACX,SAAuBT,EAAKiB,GAAO,CACjC,gBAAiB,mBACjB,aAAc,EACd,iBAAkB,EAClB,kBAAmB,EACnB,WAAY,GACZ,SAAU,GACV,OAAQ,OACR,GAAI,YACJ,oBAAqB,GACrB,SAAU,YACV,KAAM,GACN,MAAO,GACP,UAAW,QACX,QAAS,GACT,cAAe,GACf,QAAS,IAAI,IAAI,0HAA0H,EAAE,KAC7I,QAAS,SACT,OAAQ,4FACR,UAAW,EACX,MAAO,CACL,OAAQ,OACR,MAAO,MACT,EACA,cAAe,EACf,eAAgB,EAChB,OAAQ,GACR,MAAO,MACT,CAAC,CACH,CAAC,CACH,CAAC,EAAgBjB,EAAKI,EAAO,IAAK,CAChC,UAAW,gBACb,CAAC,CAAC,CACJ,CAAC,EAAgBJ,EAAKS,EAAW,CAC/B,UAAW,2BACX,SAAuBT,EAAKkB,GAAU,CACpC,OAAQ,OACR,GAAI,YACJ,SAAU,YACV,QAAS,YACT,MAAO,MACT,CAAC,CACH,CAAC,CAAC,CACJ,CAAC,CAAC,CACJ,CAAC,EAAgBf,EAAMa,EAAiB,CACtC,yBAA0B,GAC1B,kBAAmB,CACjB,WAAY9E,EACd,EACA,sBAAuB,GACvB,gBAAiBD,GACjB,eAAgBE,GAChB,iBAAkB,EAClB,mCAAoC,GACpC,gBAAiB,IACjB,mCAAoC,GACpC,oBAAqB,GACrB,gBAAiB,GACjB,gBAAiB,EACjB,UAAW,iBACX,mBAAoB,QACpB,KAAM,QACN,kBAAmBC,GACnB,SAAU,CAAc4D,EAAKI,EAAO,IAAK,CACvC,WAAY,CACV,IAAK,GACL,IAAK,OACL,gBAAiB,KACjB,eAAgB,KAChB,YAAa,KACb,WAAY,KACZ,IAAK,IAAI,IAAI,yFAAyF,EAAE,IAC1G,EACA,UAAW,gBACX,SAAuBJ,EAAKe,GAAO,CACjC,WAAY,CACV,IAAK,GACL,IAAK,OACL,gBAAiB,MACjB,eAAgB,IAChB,YAAa,IACb,WAAY,IACZ,MAAO,QACP,IAAK,IAAI,IAAI,wFAAwF,EAAE,KACvG,OAAQ,GAAG,IAAI,IAAI,wFAAwF,EAAE,cAAc,IAAI,IAAI,sEAAsE,EAAE,WAC7M,EACA,UAAW,gBACX,mBAAoB,QACpB,KAAM,OACR,CAAC,CACH,CAAC,EAAgBf,EAAKI,EAAO,IAAK,CAChC,UAAW,gBACX,SAAuBJ,EAAKI,EAAO,IAAK,CACtC,UAAW,gBACX,SAAuBJ,EAAKI,EAAO,IAAK,CACtC,UAAW,iBACX,kBAAmB/D,EACrB,CAAC,CACH,CAAC,CACH,CAAC,CAAC,CACJ,CAAC,CAAC,CACJ,CAAC,EAAgB8D,EAAMC,EAAO,IAAK,CACjC,UAAW,gBACX,SAAU,CAAcJ,EAAKO,EAAmB,CAC9C,WAAYlB,EACZ,UAAW,CACT,UAAW,CACT,SAAuBW,EAAWY,GAAU,CAC1C,SAAuBZ,EAAK,IAAK,CAC/B,MAAO,CACL,kBAAmB,+BACnB,uBAAwB,qDACxB,qBAAsB,OACtB,0BAA2B,OAC3B,uBAAwB,QACxB,0BAA2B,SAC3B,sBAAuB,oBACzB,EACA,SAAU,wHACZ,CAAC,CACH,CAAC,CACH,CACF,EACA,SAAuBA,EAAKmB,GAAgB,CAC1C,kBAAmB,CACjB,WAAY5E,EACd,EACA,sBAAuB,GACvB,gBAAiBD,EACjB,eAAgBE,GAChB,mCAAoC,GACpC,oBAAqB,GACrB,sBAAuB,GACvB,gBAAiB,GACjB,gBAAiB,EACjB,SAAuBwD,EAAWY,GAAU,CAC1C,SAAuBZ,EAAK,IAAK,CAC/B,MAAO,CACL,kBAAmB,+BACnB,uBAAwB,qDACxB,qBAAsB,OACtB,0BAA2B,SAC3B,uBAAwB,QACxB,0BAA2B,SAC3B,sBAAuB,oBACzB,EACA,SAAU,wHACZ,CAAC,CACH,CAAC,EACD,UAAW,iBACX,MAAO,CAAC,uBAAuB,EAC/B,kBAAmB,MACnB,mBAAoB,EACtB,CAAC,CACH,CAAC,EAAgBA,EAAKoB,GAAiB,CACrC,kBAAmB,CACjB,WAAY3E,EACd,EACA,sBAAuB,GACvB,gBAAiBH,EACjB,eAAgBI,GAChB,mCAAoC,GACpC,oBAAqB,GACrB,gBAAiB,GACjB,gBAAiB,EACjB,UAAW,0BACX,SAAuBsD,EAAKO,EAAmB,CAC7C,WAAYlB,EACZ,UAAW,CACT,UAAW,CACT,QAAS,WACX,CACF,EACA,SAAuBW,EAAKqB,GAAQ,CAClC,OAAQ,OACR,GAAI,YACJ,SAAU,YACV,MAAO,mBACP,QAAS,YACT,MAAO,MACT,CAAC,CACH,CAAC,CACH,CAAC,CAAC,CACJ,CAAC,EAAgBlB,EAAMC,EAAO,IAAK,CACjC,UAAW,gBACX,SAAU,CAAcJ,EAAKgB,EAAiB,CAC5C,kBAAmB,CACjB,WAAYzE,EACd,EACA,sBAAuB,GACvB,gBAAiBD,EACjB,eAAgBE,GAChB,mCAAoC,GACpC,oBAAqB,GACrB,gBAAiB,GACjB,gBAAiB,EACjB,UAAW,gBACX,SAAuBwD,EAAKsB,GAAK,CAC/B,UAAW,iBACX,mBAAoB,OACpB,OAAQ,WACR,KAAM,OACN,QAAS,EACT,IAAK,qqBACL,aAAc,WACd,mBAAoB,EACtB,CAAC,CACH,CAAC,EAAG3B,EAAa,GAAkBK,EAAKgB,EAAiB,CACvD,kBAAmB,CACjB,WAAYvE,EACd,EACA,sBAAuB,GACvB,gBAAiBH,EACjB,eAAgBI,GAChB,mCAAoC,GACpC,oBAAqB,GACrB,gBAAiB,GACjB,gBAAiB,EACjB,UAAW,gCACX,SAAuBsD,EAAKuB,GAAW,CACrC,yBAA0B,GAC1B,iBAAkB,EAClB,mCAAoC,GACpC,gBAAiB,IACjB,gBAAiB,GACjB,gBAAiB,EACjB,UAAW,iBACX,mBAAoB,OACpB,OAAQ,WACR,KAAM,OACN,QAAS,EACT,IAAK,giDACL,aAAc,UACd,mBAAoB,EACtB,CAAC,CACH,CAAC,EAAgBvB,EAAKgB,EAAiB,CACrC,kBAAmB,CACjB,WAAYrE,EACd,EACA,sBAAuB,GACvB,gBAAiBL,EACjB,eAAgBM,GAChB,mCAAoC,GACpC,oBAAqB,GACrB,gBAAiB,GACjB,gBAAiB,EACjB,UAAW,gBACX,SAAuBoD,EAAKuB,GAAW,CACrC,yBAA0B,GAC1B,iBAAkB,EAClB,mCAAoC,GACpC,gBAAiB,IACjB,gBAAiB,GACjB,gBAAiB,GACjB,UAAW,iBACX,mBAAoB,OACpB,OAAQ,WACR,KAAM,OACN,QAAS,GACT,IAAK,wuBACL,aAAc,SACd,mBAAoB,EACtB,CAAC,CACH,CAAC,EAAG5B,EAAa,GAAkBK,EAAKgB,EAAiB,CACvD,kBAAmB,CACjB,WAAYnE,EACd,EACA,sBAAuB,GACvB,gBAAiBP,EACjB,eAAgBQ,GAChB,mCAAoC,GACpC,oBAAqB,GACrB,gBAAiB,GACjB,gBAAiB,EACjB,UAAW,gCACX,SAAuBkD,EAAKuB,GAAW,CACrC,yBAA0B,GAC1B,iBAAkB,EAClB,mCAAoC,GACpC,gBAAiB,IACjB,gBAAiB,GACjB,gBAAiB,EACjB,UAAW,iBACX,mBAAoB,OACpB,OAAQ,WACR,KAAM,OACN,QAAS,EACT,IAAK,qhHACL,aAAc,WACd,mBAAoB,EACtB,CAAC,CACH,CAAC,EAAgBvB,EAAKgB,EAAiB,CACrC,kBAAmB,CACjB,WAAYjE,EACd,EACA,sBAAuB,GACvB,gBAAiBT,EACjB,eAAgBU,GAChB,mCAAoC,GACpC,oBAAqB,GACrB,gBAAiB,GACjB,gBAAiB,EACjB,UAAW,iBACX,SAAuBgD,EAAKuB,GAAW,CACrC,yBAA0B,GAC1B,iBAAkB,EAClB,mCAAoC,GACpC,gBAAiB,IACjB,gBAAiB,GACjB,gBAAiB,GACjB,UAAW,gBACX,mBAAoB,OACpB,OAAQ,WACR,KAAM,OACN,QAAS,GACT,IAAK,uxDACL,aAAc,WACd,mBAAoB,EACtB,CAAC,CACH,CAAC,CAAC,CACJ,CAAC,CAAC,CACJ,CAAC,CACH,CAAC,CAAC,CACJ,CAAC,EAAgBpB,EAAMC,EAAO,IAAK,CACjC,UAAW,gBACX,SAAU,CAAcD,EAAMC,EAAO,IAAK,CACxC,UAAW,iBACX,SAAU,CAAcD,EAAMC,EAAO,IAAK,CACxC,UAAW,gBACX,SAAU,CAAcJ,EAAKgB,EAAiB,CAC5C,kBAAmB,CACjB,WAAYzE,EACd,EACA,sBAAuB,GACvB,gBAAiBD,EACjB,eAAgBE,GAChB,mCAAoC,GACpC,oBAAqB,GACrB,gBAAiB,GACjB,gBAAiB,EACjB,UAAW,gBACX,SAAuBwD,EAAKS,EAAW,CACrC,UAAW,2BACX,SAAuBT,EAAKU,EAAU,CACpC,MAAO,oBACP,OAAQ,OACR,WAAY,QACZ,cAAe,SACf,GAAI,YACJ,SAAU,YACV,SAAU,GACV,aAAc,GACd,MAAO,CACL,OAAQ,OACR,MAAO,MACT,EACA,OAAQ,UACR,MAAO,MACT,CAAC,CACH,CAAC,CACH,CAAC,EAAgBV,EAAKO,EAAmB,CACvC,WAAYlB,EACZ,UAAW,CACT,UAAW,CACT,QAAS,qZACX,EACA,UAAW,CACT,QAAS,qZACX,CACF,EACA,SAAuBW,EAAKwB,GAAY,CACtC,kBAAmB,CACjB,WAAY/E,EACd,EACA,sBAAuB,GACvB,gBAAiBH,EACjB,eAAgBI,GAChB,mCAAoC,GACpC,oBAAqB,GACrB,sBAAuB,GACvB,gBAAiB,GACjB,gBAAiB,EACjB,UAAW,OACX,UAAW,gBACX,MAAO,CAAC,oBAAoB,EAC5B,QAAS,8PACT,kBAAmB,MACnB,mBAAoB,EACtB,CAAC,CACH,CAAC,EAAgBsD,EAAKwB,GAAY,CAChC,kBAAmB,CACjB,WAAY7E,EACd,EACA,sBAAuB,GACvB,gBAAiBL,EACjB,eAAgBM,GAChB,mCAAoC,GACpC,oBAAqB,GACrB,sBAAuB,GACvB,gBAAiB,GACjB,gBAAiB,GACjB,UAAW,OACX,UAAW,iBACX,MAAO,CAAC,uBAAuB,EAC/B,QAAS,4SACT,kBAAmB,MACnB,mBAAoB,EACtB,CAAC,CAAC,CACJ,CAAC,EAAgBoD,EAAKgB,EAAiB,CACrC,kBAAmB,CACjB,WAAYnE,EACd,EACA,sBAAuB,GACvB,gBAAiBI,GACjB,eAAgBC,GAChB,mCAAoC,GACpC,oBAAqB,GACrB,gBAAiB,GACjB,gBAAiB,EACjB,UAAW,iBACX,SAAuB8C,EAAKO,EAAmB,CAC7C,WAAYlB,EACZ,UAAW,CACT,UAAW,CACT,kBAAmBjD,EACrB,EACA,UAAW,CACT,kBAAmBA,EACrB,CACF,EACA,SAAuB4D,EAAKI,EAAO,IAAK,CACtC,UAAW,iBACX,kBAAmBjD,GACnB,SAAuB6C,EAAKS,EAAW,CACrC,UAAW,2BACX,SAAuBT,EAAKiB,GAAQ,CAClC,gBAAiB,mBACjB,WAAY,EACZ,YAAa,EACb,WAAY,GACZ,SAAU,GACV,OAAQ,OACR,GAAI,YACJ,QAAS,GACT,SAAU,YACV,SAAU,YACV,MAAO,GACP,UAAW,QACX,QAAS,GACT,cAAe,GACf,QAAS,OACT,OAAQ,EACR,eAAgB,GAChB,QAAS,IAAI,IAAI,0HAA0H,EAAE,KAC7I,QAAS,SACT,OAAQ,4FACR,UAAW,EACX,MAAO,CACL,OAAQ,OACR,MAAO,MACT,EACA,QAAS,EACT,SAAU,EACV,OAAQ,GACR,MAAO,MACT,CAAC,CACH,CAAC,CACH,CAAC,CACH,CAAC,CACH,CAAC,CAAC,CACJ,CAAC,EAAgBd,EAAMC,EAAO,IAAK,CACjC,UAAW,iBACX,SAAU,CAACR,EAAa,GAAkBI,EAAKgB,EAAiB,CAC9D,kBAAmB,CACjB,WAAYnE,EACd,EACA,sBAAuB,GACvB,gBAAiBI,GACjB,eAAgBC,GAChB,mCAAoC,GACpC,oBAAqB,GACrB,gBAAiB,GACjB,gBAAiB,EACjB,UAAW,8CACX,mBAAoB,UACpB,KAAM,UACN,kBAAmBlB,GACnB,SAAuBgE,EAAKS,EAAW,CACrC,UAAW,0BACX,SAAuBT,EAAKiB,GAAQ,CAClC,gBAAiB,mBACjB,WAAY,EACZ,YAAa,EACb,WAAY,GACZ,SAAU,GACV,OAAQ,OACR,GAAI,YACJ,QAAS,GACT,SAAU,YACV,SAAU,YACV,MAAO,GACP,UAAW,QACX,QAAS,GACT,cAAe,GACf,QAAS,OACT,OAAQ,EACR,eAAgB,GAChB,QAAS,IAAI,IAAI,uHAAuH,EAAE,KAC1I,QAAS,SACT,OAAQ,4FACR,UAAW,EACX,MAAO,CACL,OAAQ,OACR,MAAO,MACT,EACA,QAAS,EACT,SAAU,EACV,OAAQ,GACR,MAAO,MACT,CAAC,CACH,CAAC,CACH,CAAC,EAAgBd,EAAMC,EAAO,IAAK,CACjC,UAAW,iBACX,SAAU,CAAcJ,EAAKgB,EAAiB,CAC5C,kBAAmB,CACjB,WAAYzE,EACd,EACA,sBAAuB,GACvB,gBAAiBD,EACjB,eAAgBE,GAChB,mCAAoC,GACpC,oBAAqB,GACrB,gBAAiB,GACjB,gBAAiB,EACjB,UAAW,gBACX,SAAuBwD,EAAKS,EAAW,CACrC,UAAW,2BACX,SAAuBT,EAAKU,EAAU,CACpC,MAAO,oBACP,OAAQ,OACR,WAAY,QACZ,cAAe,YACf,GAAI,YACJ,SAAU,YACV,SAAU,GACV,aAAc,GACd,MAAO,CACL,OAAQ,OACR,MAAO,MACT,EACA,OAAQ,UACR,MAAO,MACT,CAAC,CACH,CAAC,CACH,CAAC,EAAgBV,EAAKwB,GAAY,CAChC,kBAAmB,CACjB,WAAY/E,EACd,EACA,sBAAuB,GACvB,gBAAiBH,EACjB,eAAgBI,GAChB,mCAAoC,GACpC,oBAAqB,GACrB,sBAAuB,GACvB,gBAAiB,GACjB,gBAAiB,EACjB,UAAW,OACX,UAAW,iBACX,MAAO,CAAC,oBAAoB,EAC5B,QAAS,iVACT,kBAAmB,MACnB,mBAAoB,EACtB,CAAC,EAAgBsD,EAAKwB,GAAY,CAChC,kBAAmB,CACjB,WAAY7E,EACd,EACA,sBAAuB,GACvB,gBAAiBL,EACjB,eAAgBM,GAChB,mCAAoC,GACpC,oBAAqB,GACrB,sBAAuB,GACvB,gBAAiB,GACjB,gBAAiB,GACjB,UAAW,OACX,UAAW,gBACX,MAAO,CAAC,uBAAuB,EAC/B,QAAS,iTACT,kBAAmB,MACnB,mBAAoB,EACtB,CAAC,CAAC,CACJ,CAAC,EAAGiD,EAAa,GAAkBG,EAAKgB,EAAiB,CACvD,kBAAmB,CACjB,WAAYnE,EACd,EACA,sBAAuB,GACvB,gBAAiBI,GACjB,eAAgBC,GAChB,mCAAoC,GACpC,oBAAqB,GACrB,gBAAiB,GACjB,gBAAiB,EACjB,UAAW,8BACX,mBAAoB,SACpB,KAAM,SACN,kBAAmBlB,GACnB,SAAuBgE,EAAKS,EAAW,CACrC,UAAW,0BACX,SAAuBT,EAAKiB,GAAQ,CAClC,gBAAiB,mBACjB,WAAY,EACZ,YAAa,EACb,WAAY,GACZ,SAAU,GACV,OAAQ,OACR,GAAI,YACJ,QAAS,GACT,SAAU,YACV,SAAU,YACV,MAAO,GACP,UAAW,QACX,QAAS,GACT,cAAe,GACf,QAAS,OACT,OAAQ,EACR,eAAgB,GAChB,QAAS,IAAI,IAAI,uHAAuH,EAAE,KAC1I,QAAS,SACT,OAAQ,4FACR,UAAW,EACX,MAAO,CACL,OAAQ,OACR,MAAO,MACT,EACA,QAAS,EACT,SAAU,EACV,OAAQ,GACR,MAAO,MACT,CAAC,CACH,CAAC,CACH,CAAC,CAAC,CACJ,CAAC,EAAgBd,EAAMC,EAAO,IAAK,CACjC,UAAW,gBACX,SAAU,CAAcD,EAAMC,EAAO,IAAK,CACxC,UAAW,iBACX,SAAU,CAAcJ,EAAKgB,EAAiB,CAC5C,kBAAmB,CACjB,WAAYzE,EACd,EACA,sBAAuB,GACvB,gBAAiBD,EACjB,eAAgBE,GAChB,mCAAoC,GACpC,oBAAqB,GACrB,gBAAiB,GACjB,gBAAiB,EACjB,UAAW,iBACX,SAAuBwD,EAAKS,EAAW,CACrC,UAAW,2BACX,SAAuBT,EAAKU,EAAU,CACpC,MAAO,qBACP,OAAQ,OACR,WAAY,QACZ,cAAe,cACf,GAAI,YACJ,SAAU,YACV,SAAU,GACV,aAAc,GACd,MAAO,CACL,OAAQ,OACR,MAAO,MACT,EACA,OAAQ,UACR,MAAO,MACT,CAAC,CACH,CAAC,CACH,CAAC,EAAgBV,EAAKwB,GAAY,CAChC,kBAAmB,CACjB,WAAY/E,EACd,EACA,sBAAuB,GACvB,gBAAiBH,EACjB,eAAgBI,GAChB,mCAAoC,GACpC,oBAAqB,GACrB,sBAAuB,GACvB,gBAAiB,GACjB,gBAAiB,EACjB,UAAW,OACX,UAAW,gBACX,MAAO,CAAC,oBAAoB,EAC5B,QAAS,8UACT,kBAAmB,MACnB,mBAAoB,EACtB,CAAC,EAAgBsD,EAAKwB,GAAY,CAChC,kBAAmB,CACjB,WAAY7E,EACd,EACA,sBAAuB,GACvB,gBAAiBL,EACjB,eAAgBM,GAChB,mCAAoC,GACpC,oBAAqB,GACrB,sBAAuB,GACvB,gBAAiB,GACjB,gBAAiB,GACjB,UAAW,OACX,UAAW,iBACX,MAAO,CAAC,uBAAuB,EAC/B,QAAS,2RACT,kBAAmB,MACnB,mBAAoB,EACtB,CAAC,CAAC,CACJ,CAAC,EAAgBuD,EAAMa,EAAiB,CACtC,kBAAmB,CACjB,WAAYjE,EACd,EACA,sBAAuB,GACvB,gBAAiBE,GACjB,eAAgBG,GAChB,mCAAoC,GACpC,oBAAqB,GACrB,gBAAiB,GACjB,gBAAiB,EACjB,UAAW,gBACX,kBAAmBC,GACnB,SAAU,CAAc2C,EAAKgB,EAAiB,CAC5C,kBAAmB,CACjB,WAAY1D,EACd,EACA,sBAAuB,GACvB,gBAAiBtC,GACjB,eAAgBuC,GAChB,mCAAoC,GACpC,oBAAqB,GACrB,gBAAiB,GACjB,gBAAiB,EACjB,UAAW,gBACX,SAAuByC,EAAKS,EAAW,CACrC,UAAW,2BACX,SAAuBT,EAAKU,EAAU,CACpC,MAAO,qBACP,OAAQ,OACR,WAAY,QACZ,cAAe,gBACf,GAAI,YACJ,SAAU,YACV,SAAU,GACV,aAAc,GACd,MAAO,CACL,OAAQ,OACR,MAAO,MACT,EACA,OAAQ,OACR,MAAO,MACT,CAAC,CACH,CAAC,CACH,CAAC,EAAgBV,EAAKgB,EAAiB,CACrC,kBAAmB,CACjB,WAAYxD,EACd,EACA,sBAAuB,GACvB,gBAAiBxC,GACjB,eAAgByC,GAChB,mCAAoC,GACpC,oBAAqB,GACrB,gBAAiB,GACjB,gBAAiB,EACjB,UAAW,gBACX,SAAuBuC,EAAKS,EAAW,CACrC,UAAW,0BACX,SAAuBT,EAAKU,EAAU,CACpC,MAAO,qBACP,OAAQ,OACR,WAAY,QACZ,cAAe,aACf,GAAI,YACJ,SAAU,YACV,SAAU,GACV,aAAc,GACd,MAAO,CACL,OAAQ,OACR,MAAO,MACT,EACA,OAAQ,OACR,MAAO,MACT,CAAC,CACH,CAAC,CACH,CAAC,EAAgBV,EAAKgB,EAAiB,CACrC,kBAAmB,CACjB,WAAYtD,EACd,EACA,sBAAuB,GACvB,gBAAiB1C,GACjB,eAAgB2C,GAChB,mCAAoC,GACpC,oBAAqB,GACrB,gBAAiB,GACjB,gBAAiB,EACjB,UAAW,iBACX,SAAuBqC,EAAKS,EAAW,CACrC,UAAW,0BACX,SAAuBT,EAAKU,EAAU,CACpC,MAAO,qBACP,OAAQ,OACR,WAAY,QACZ,cAAe,cACf,GAAI,YACJ,SAAU,YACV,SAAU,GACV,aAAc,GACd,MAAO,CACL,OAAQ,OACR,MAAO,MACT,EACA,OAAQ,OACR,MAAO,MACT,CAAC,CACH,CAAC,CACH,CAAC,CAAC,CACJ,CAAC,CAAC,CACJ,CAAC,CAAC,CACJ,CAAC,EAAgBV,EAAKM,GAAa,CACjC,kBAAmB,CACjB,WAAYzC,EACd,EACA,sBAAuB,GACvB,gBAAiBD,GACjB,eAAgBE,GAChB,mCAAoC,GACpC,oBAAqB,GACrB,gBAAiB,GACjB,gBAAiB,EACjB,WAAY,CACV,IAAK,GACL,IAAK,OACL,gBAAiB,KACjB,eAAgB,KAChB,QAAS,OACT,YAAa,KACb,WAAY,KACZ,MAAO,QACP,IAAK,IAAI,IAAI,qEAAqE,EAAE,KACpF,OAAQ,GAAG,IAAI,IAAI,uFAAuF,EAAE,cAAc,IAAI,IAAI,wFAAwF,EAAE,eAAe,IAAI,IAAI,wFAAwF,EAAE,eAAe,IAAI,IAAI,qEAAqE,EAAE,YAC7a,EACA,UAAW,gBACX,SAAuBkC,EAAKO,EAAmB,CAC7C,WAAYlB,EACZ,UAAW,CACT,UAAW,CACT,kBAAmB1D,EACrB,EACA,UAAW,CACT,kBAAmBA,EACrB,CACF,EACA,SAAuBwE,EAAMC,EAAO,IAAK,CACvC,UAAW,gBACX,kBAAmBjF,GACnB,SAAU,CAAcgF,EAAMC,EAAO,IAAK,CACxC,UAAW,iBACX,SAAU,CAAcJ,EAAKwB,GAAY,CACvC,kBAAmB,CACjB,WAAYxD,EACd,EACA,sBAAuB,GACvB,gBAAiBD,GACjB,eAAgBE,GAChB,mCAAoC,GACpC,oBAAqB,EACrB,sBAAuB,GACvB,gBAAiB,GACjB,gBAAiB,EACjB,UAAW,SACX,UAAW,iBACX,MAAO,CAAC,oBAAoB,EAC5B,QAAS,iNACT,kBAAmB,MACnB,mBAAoB,EACtB,CAAC,EAAgB+B,EAAKwB,GAAY,CAChC,kBAAmB,CACjB,WAAYtD,EACd,EACA,sBAAuB,GACvB,gBAAiBH,GACjB,eAAgBI,GAChB,mCAAoC,GACpC,oBAAqB,EACrB,sBAAuB,GACvB,gBAAiB,GACjB,gBAAiB,GACjB,UAAW,SACX,UAAW,iBACX,MAAO,CAAC,uBAAuB,EAC/B,QAAS,qTACT,kBAAmB,MACnB,mBAAoB,EACtB,CAAC,EAAgB6B,EAAKS,EAAW,CAC/B,UAAW,0BACX,SAAuBT,EAAKO,EAAmB,CAC7C,WAAYlB,EACZ,UAAW,CACT,UAAW,CACT,QAAS,WACX,CACF,EACA,SAAuBW,EAAKqB,GAAQ,CAClC,OAAQ,OACR,GAAI,YACJ,SAAU,YACV,MAAO,mBACP,QAAS,YACT,MAAO,MACT,CAAC,CACH,CAAC,CACH,CAAC,CAAC,CACJ,CAAC,EAAgBlB,EAAMC,EAAO,IAAK,CACjC,UAAW,gBACX,SAAU,CAAcJ,EAAKS,EAAW,CACtC,UAAW,0BACX,SAAuBT,EAAKU,EAAU,CACpC,MAAO,qBACP,OAAQ,OACR,WAAY,QACZ,cAAe,WACf,GAAI,YACJ,SAAU,YACV,SAAU,GACV,aAAc,GACd,MAAO,CACL,OAAQ,OACR,MAAO,MACT,EACA,OAAQ,OACR,MAAO,MACT,CAAC,CACH,CAAC,EAAgBV,EAAKW,GAAM,CAC1B,sBAAuB,GACvB,UAAW,SACX,UAAW,gBACX,MAAO,CAAC,qBAAqB,EAC7B,QAAS,gMACT,kBAAmB,MACnB,mBAAoB,EACtB,CAAC,EAAgBX,EAAKW,GAAM,CAC1B,sBAAuB,GACvB,UAAW,SACX,UAAW,iBACX,MAAO,CAAC,qBAAqB,EAC7B,QAAS,4LACT,kBAAmB,MACnB,mBAAoB,EACtB,CAAC,CAAC,CACJ,CAAC,CAAC,CACJ,CAAC,CACH,CAAC,CACH,CAAC,CAAC,CACJ,CAAC,EAAgBX,EAAK,MAAO,CAC3B,GAAI,SACN,CAAC,CAAC,CACJ,CAAC,CACH,CAAC,CACH,CAAC,CACH,CAAC,EACKyB,GAAM,CAAC,sZAAuZ,kFAAmF,IAAIrD,GAAS,sCAAuC,mDAAoD,gTAAiT,mHAAoH,6MAA8M,mVAAoV,oSAAqS,mLAAoL,8gBAA+gB,mHAAoH,+kBAAglB,qTAAsT,iSAAkS,+MAAgN,mHAAoH,oqBAAqqB,yRAA0R,gSAAiS,8YAA+Y,kHAAmH,yOAA0O,8HAA+H,yOAA0O,qSAAsS,wRAAyR,2gBAA4gB,0GAA2G,yRAA0R,yLAA0L,ipBAAkpB,+hBAAgiB,gMAAiM,iRAAkR,oVAAqV,0ZAA2Z,uSAAwS,sSAAuS,wRAAyR,0ZAA2Z,+FAAgG,gGAAiG,6GAA8G,gGAAiG,4GAA6G,0SAA2S,6WAA8W,wWAAyW,8KAA+K,0QAA2Q,4mBAA6mB,sqBAAuqB,oHAAqH,woBAAyoB,mJAAoJ,0pBAA2pB,4oBAA6oB,yuBAA0uB,2GAA4G,koBAAmoB,gpBAAipB,oPAAqP,wnBAAynB,wnBAAynB,mHAAoH,+VAAgW,kTAAmT,inBAAknB,2mBAA4mB,uSAAwS,iLAAkL,2hBAA4hB,4hBAA6hB,ojNAAqjN,4FAA6F,oHAAoHA,GAAS,8oEAA+oE,4FAA4FA,GAAS,m3JAAm3J,EAOr+rCsD,GAAkBC,GAAQrD,GAAWmD,GAAK,cAAc,EACvDpD,GAAQqD,GACfA,GAAgB,YAAc,sBAC9BA,GAAgB,aAAe,CAC7B,OAAQ,OACR,MAAO,IACT,EACAE,GAASF,GAAiB,CAAC,CACzB,OAAQ,eACR,YAAa,CACX,sBAAuB,wCACvB,IAAK,qGACP,EACA,MAAO,SACP,IAAK,sGACL,OAAQ,KACV,EAAG,CACD,OAAQ,cACR,YAAa,CACX,sBAAuB,wCACvB,IAAK,mGACP,EACA,MAAO,SACP,IAAK,oGACL,OAAQ,KACV,EAAG,CACD,OAAQ,aACR,YAAa,CACX,sBAAuB,wCACvB,IAAK,gGACP,EACA,MAAO,SACP,IAAK,iGACL,OAAQ,KACV,EAAG,CACD,OAAQ,eACR,YAAa,CACX,sBAAuB,wCACvB,IAAK,qGACP,EACA,MAAO,SACP,IAAK,sGACL,OAAQ,KACV,EAAG,GAAGG,GAAe,GAAGC,GAAY,GAAGC,GAAe,GAAGC,GAAa,GAAGC,EAAW,CAAC,EAC9E,IAAMC,GAAqB,CAChC,QAAW,CACT,MAAS,CACP,KAAQ,SACR,YAAe,CACb,sBAAyB,GAC3B,CACF,EACA,QAAW,CACT,KAAQ,iBACR,KAAQ,kBACR,MAAS,CAAC,EACV,YAAe,CACb,sBAAyB,IACzB,qBAAwB,OACxB,uBAA0B,GAC1B,oCAAuC,4JACvC,sBAAyB,QAC3B,CACF,EACA,mBAAsB,CACpB,KAAQ,UACV,CACF,CACF",
  "names": ["Storage", "name", "resolve", "reject", "request", "window", "e", "key", "value", "hashCode", "s", "a", "b", "corsProxy", "url", "cachedResponse", "cache", "Storage", "cacheKey", "data", "req", "resolve", "reject", "error", "checkForCachedData", "containerStyles", "emptyStateStyle", "defaultEvents", "ControlType", "fontSizeOptions", "fontControls", "font", "useOnEnter", "onEnter", "enabled", "useOnSpecificTargetChange", "useOnExit", "onExit", "goal", "callback", "isInTarget", "useIsInCurrentNavigationTarget", "ue", "useConstant", "init", "ref", "pe", "isMotionValue", "v", "MotionValue", "isBrowserSafari", "navigator", "userAgent", "useIsBrowserSafari", "se", "useOnChange", "value", "callback", "ue", "isMotionValue", "useAutoMotionValue", "inputValue", "options", "ref", "optionsRef", "pe", "animation", "didInitialMount", "isOnCanvas", "RenderTarget", "onChangeDeps", "onChange", "te", "transformer", "value", "useConstant", "isMotionValue", "motionValue", "ue", "ref1", "ref2", "newValue", "ref3", "animate2", "useIsOnCanvas", "se", "RenderTarget", "useRadius", "props", "borderRadius", "isMixedBorderRadius", "topLeftRadius", "topRightRadius", "bottomRightRadius", "bottomLeftRadius", "se", "borderRadiusControl", "ControlType", "paddingControl", "ControlType", "ObjectFitType", "LoopType", "PreloadType", "SrcType", "getProps", "props", "width", "height", "topLeft", "topRight", "bottomRight", "bottomLeft", "id", "children", "rest", "Video", "newProps", "p", "VideoMemo", "X", "srcType", "srcFile", "srcUrl", "playing", "canvasPlay", "loopType", "muted", "playsinline", "controls", "preload", "progress", "objectFit", "backgroundColor", "radius", "isMixed", "onSeeked", "onPause", "onPlay", "onEnd", "onClick", "onMouseEnter", "onMouseLeave", "onMouseDown", "onMouseUp", "poster", "restartOnEnter", "posterEnabled", "startTimeProp", "volume", "isInCurrentNavigationTarget", "useIsInCurrentNavigationTarget", "startTime", "videoRef", "pe", "isLoaded", "isSafari", "useIsBrowserSafari", "wasPausedOnLeave", "wasEndedOnLeave", "loop", "fullLoop", "isCanvas", "se", "RenderTarget", "isForcedCache", "isAutoCache", "isMuted", "shouldPlay", "autoPlay", "play", "te", "ref", "pause", "restartVideo", "playAfter", "setProgress", "newProgress", "isAlreadySet", "ue", "videoProgress", "useAutoMotionValue", "value", "newValue", "useOnEnter", "useOnExit", "getUrl", "cors", "corsProxy", "setVideoRef", "element", "url", "response", "cachedResponse", "checkForCachedData", "key", "hashCode", "borderRadius", "src", "e", "addPropertyControls", "ControlType", "defaultEvents", "isMotionValue", "v", "MotionValue", "useAutoMotionValue", "inputValue", "options", "optionsRef", "pe", "animation", "didInitialMount", "isOnCanvas", "RenderTarget", "onChangeDeps", "onChange", "te", "transformer", "value", "ref", "value1", "useConstant", "isMotionValue", "motionValue", "ue", "ref1", "newValue", "ref2", "animate2", "ObjectFitType", "SrcType", "getProps", "props", "width", "height", "topLeft", "topRight", "bottomRight", "bottomLeft", "id", "children", "rest", "Video", "newProps", "p", "VideoMemo", "X", "srcType", "srcFile", "srcUrl", "playing", "canvasPlay", "muted", "playsinline", "controls", "progress", "objectFit", "backgroundColor", "radius", "isMixed", "onSeeked", "onPause", "onPlay", "onEnd", "onClick", "onMouseEnter", "onMouseLeave", "onMouseDown", "onMouseUp", "poster", "restartOnEnter", "posterEnabled", "startTimeProp", "volume", "loop", "isInCurrentNavigationTarget", "useIsInCurrentNavigationTarget", "videoRef", "pe", "isSafari", "useIsBrowserSafari", "requestingPlay", "wasPausedOnLeave", "wasEndedOnLeave", "isOnCanvas", "useIsOnCanvas", "borderRadius", "useRadius", "startTime", "shouldPlay", "autoPlay", "se", "isMuted", "setProgress", "te", "rawProgress", "newProgress", "isAlreadySet", "play", "e", "pause", "ue", "videoProgress", "useAutoMotionValue", "value", "newValue", "useOnChange", "val", "useOnEnter", "useOnExit", "src", "addPropertyControls", "ControlType", "borderRadiusControl", "defaultEvents", "containerStyles", "emptyStateStyle", "containerStyles", "NullState", "Y", "_", "ref", "p", "l", "d", "n", "o", "i", "a", "r", "e", "defaultEvents", "ControlType", "findByArray", "arr", "search", "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", "d", "npm_react_18_1_exports", "importModule", "module", "ue", "emptyState", "RenderTarget", "p", "NullState", "motion", "addPropertyControls", "ControlType", "piece", "defaultEvents", "enabledGestures", "cycleOrder", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "humanReadableVariantMap", "transitions", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Component", "Y", "id", "style", "className", "width", "height", "layoutId", "outerVariant", "EooxvsCSG", "restProps", "ref", "baseVariant", "classNames", "gestureVariant", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "defaultLayoutId", "ae", "LayoutGroup", "motion", "cx", "Text", "css", "FramerAlm9w2AhY", "withCSS", "Alm9w2AhY_default", "addPropertyControls", "ControlType", "addFonts", "cycleOrder", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "humanReadableVariantMap", "transitions", "transformTemplate", "_", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Component", "Y", "id", "style", "className", "width", "height", "layoutId", "outerVariant", "restProps", "ref", "baseVariant", "classNames", "gestureVariant", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onAppear4p5abf", "args", "onAppearqykmbk", "useOnVariantChange", "defaultLayoutId", "ae", "LayoutGroup", "motion", "cx", "u", "css", "FramerTTnvgKCS3", "withCSS", "TTnvgKCS3_default", "addPropertyControls", "ControlType", "addFonts", "ImageWithFX", "withFX", "Image2", "PhosphorFonts", "getFonts", "Icon", "VideoFonts", "Video", "TimelineFonts", "TTnvgKCS3_default", "MotionDivWithFX", "motion", "RichTextWithFX", "RichText", "ButtonFonts", "Alm9w2AhY_default", "ContainerWithFX", "Container", "SVGWithFX", "SVG", "TextWithFX", "Text", "Video1Fonts", "breakpoints", "isBrowser", "variantClassNames", "removeHiddenBreakpointLayers", "humanReadableVariantMap", "transitions", "animation", "transition1", "animation1", "transformTemplate", "_", "transition2", "animation2", "animation3", "transition3", "animation4", "animation5", "transformTemplate1", "animation6", "animation7", "transition4", "animation8", "transformTemplate2", "animation9", "transition5", "animation10", "transformTemplate3", "transformTemplate4", "animation11", "transition6", "animation12", "transition7", "animation13", "transition8", "animation14", "transition9", "animation15", "transition10", "animation16", "animation17", "animation18", "transformTemplate5", "animation19", "transformTemplate6", "transition11", "animation20", "transition12", "animation21", "transition13", "animation22", "animation23", "transition14", "animation24", "animation25", "transition15", "animation26", "transition16", "animation27", "metadata", "augiA20Il_default", "Component", "Y", "id", "style", "className", "width", "height", "layoutId", "outerVariant", "restProps", "ref", "variant", "fe", "metadata1", "c", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "gestureVariant", "transition", "isDisplayed", "isDisplayed1", "isDisplayed2", "isDisplayed3", "defaultLayoutId", "ae", "p", "GeneratedComponentContext", "LayoutGroup", "u", "motion", "cx", "ImageWithFX", "PropertyOverrides", "optimizeAppear", "Container", "Icon", "Text", "x", "optimizeAppearTransformTemplate", "RichText", "Image2", "MotionDivWithFX", "Video", "TTnvgKCS3_default", "RichTextWithFX", "ContainerWithFX", "Alm9w2AhY_default", "SVG", "SVGWithFX", "TextWithFX", "css", "FrameraugiA20Il", "withCSS", "addFonts", "PhosphorFonts", "VideoFonts", "TimelineFonts", "ButtonFonts", "Video1Fonts", "__FramerMetadata__"]
}
