{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/2rGdY3xNPdGAC1LGc2Ew/gQcpGdBaDKqalAQX5HN3/Pattern.js", "ssg:https://framer.com/m/framer/icon-nullstate.js@0.7.0", "ssg:https://framer.com/m/material-icons/Home.js@0.0.32", "ssg:https://framerusercontent.com/modules/Ma20hU0GGRxLxZphbywl/OSpwWF91FHPVFyQJjMHt/utils.js", "ssg:https://framerusercontent.com/modules/6Ldpz1V0DkD45gXvi67I/PCgBX5d6MdQT7E7nhdXn/Material.js", "ssg:https://framer.com/m/humaaans-assets/head.js@0.0.33", "ssg:https://framer.com/m/humaaans-assets/body.js@0.0.33", "ssg:https://framer.com/m/humaaans-assets/sitting.js@0.0.33", "ssg:https://framer.com/m/humaaans-assets/standing.js@0.0.33", "ssg:https://framerusercontent.com/modules/BTZy5VRk3psZMmSmB1ao/zgoCuAUPFRELIe1eqhIR/Humaaans.js", "ssg:https://framerusercontent.com/modules/jnCYOLBN3FwV6SxkEWRK/NugyOsFMMND5XKK66Fym/t95NRiqV8.js", "ssg:https://framerusercontent.com/modules/svvoLMcueyb77GyPLGKd/pyLdi3peZwhF1BMu7N5h/augiA20Il.js"],
  "sourcesContent": ["import { jsx as _jsx } from \"react/jsx-runtime\";\nimport { addPropertyControls, ControlType, RenderTarget, Color } from \"framer\";\nimport { motion } from \"framer-motion\"; /**\n                                        * PATTERN\n                                        *\n                                        * @framerIntrinsicWidth 200\n                                        * @framerIntrinsicHeight 200\n                                        * @framerDisableUnlink\n                                        *\n                                        * @framerSupportedLayoutWidth fixed\n                                        * @framerSupportedLayoutHeight fixed\n                                        */\nexport default function Pattern(props) {\n  const {\n    patternType,\n    front,\n    back,\n    radius,\n    scale,\n    shouldAnimate,\n    direction,\n    diagonal,\n    duration\n  } = props;\n  const isCanvas = RenderTarget.current() === RenderTarget.canvas;\n  let pattern;\n  let position;\n  let size;\n  let repeat;\n  let blendMode;\n  let filter;\n  let addBackground;\n  let backgroundPosAnimation;\n  const frontHex = Color.toHexString(Color(front));\n  const backHex = Color.toHexString(Color(back));\n  const frontWithoutHex = frontHex.replace(\"#\", \"\");\n  const backWithoutHex = backHex.replace(\"#\", \"\");\n  const factor = direction === \"left\" || direction === \"top\" ? -1 : 1;\n  const xScale = direction === \"left\" || direction === \"right\" ? factor * scale : 0;\n  const yScale = direction === \"top\" || direction === \"bottom\" ? factor * scale : 0;\n  if (patternType === \"wave\") {\n    pattern = `radial-gradient(circle at center center, ${front}, ${back}), repeating-radial-gradient(circle at center center, ${front}, ${front}, ${scale}px, transparent ${scale * 2}px, transparent ${scale}px)`;\n    blendMode = \"multiply\";\n  }\n  if (patternType === \"zigzag\") {\n    pattern = `linear-gradient(135deg, ${front} 25%, transparent 25%), linear-gradient(225deg, ${front} 25%, transparent 25%), linear-gradient(45deg, ${front} 25%, transparent 25%), linear-gradient(315deg, ${front} 25%, ${back} 25%)`;\n    position = `${scale}px 0, ${scale}px 0, 0 0, 0 0`;\n    size = `${scale * 2}px ${scale * 2}px`;\n    repeat = `repeat`;\n  }\n  if (patternType === \"diagonal\") {\n    pattern = `repeating-linear-gradient(45deg, ${front}, ${front} ${scale / 2}px, ${back} ${scale / 2}px, ${back} ${scale * 2}px )`;\n  }\n  if (patternType === \"diagonal-two\") {\n    pattern = `repeating-linear-gradient( 135deg, ${front}, ${front} ${scale / 2}px, ${back} ${scale / 2}px, ${back} ${scale * 2}px )`;\n  }\n  if (patternType === \"blocks\") {\n    pattern = `linear-gradient(30deg, ${front} 12%, transparent 12.5%, transparent 87%, ${front} 87.5%, ${front}), linear-gradient(150deg, ${front} 12%, transparent 12.5%, transparent 87%, ${front} 87.5%, ${front}), linear-gradient(30deg, ${front} 12%, transparent 12.5%, transparent 87%, ${front} 87.5%, ${front}), linear-gradient(150deg, ${front} 12%, transparent 12.5%, transparent 87%, ${front} 87.5%, ${front}), linear-gradient(60deg, ${back} 25%, transparent 25.5%, transparent 75%, ${back} 75%, ${back}), linear-gradient(60deg, ${back} 25%, transparent 25.5%, transparent 75%, ${back} 75%, ${back})`;\n    size = `${scale * 8}px ${scale * 14}px`;\n    position = `0 0, 0 0, ${scale * 4}px ${scale * 7}px, ${scale * 4}px ${scale * 7}px, 0 0, ${scale * 4}px ${scale * 7}px`;\n  }\n  if (patternType === \"polka\") {\n    pattern = `radial-gradient(${front} 1px, transparent 1px), radial-gradient(${front} 1px, ${back} 1px)`;\n    size = `${scale * 2}px ${scale * 2}px`;\n    position = `0 0, ${scale}px ${scale}px`;\n  }\n  if (patternType === \"rhombus\") {\n    pattern = `linear-gradient(135deg, ${front} 25%, transparent 25%), linear-gradient(225deg, ${front} 25%, transparent 25%), linear-gradient(45deg, ${front} 25%, transparent 25%), linear-gradient(315deg, ${front} 25%, ${back} 25%)`;\n    position = `${scale}px 0, ${scale}px 0, 0 0, 0 0`;\n    size = `${scale}px ${scale}px`;\n    repeat = \"repeat\";\n  }\n  if (patternType === \"stars\") {\n    pattern = `radial-gradient(ellipse ${scale}px ${scale}px, ${front}, ${front} 25%, ${back} 25%)`;\n    size = `${scale / 2}px ${scale / 2}px`;\n    if (shouldAnimate) {\n      backgroundPosAnimation = `${xScale}px ${yScale}px`;\n    }\n  }\n  if (patternType === \"circles\") {\n    pattern = `radial-gradient(circle at 100% 50%, ${back} 20%, ${front} 21%, ${front} 34%, transparent 35%, transparent), radial-gradient(circle at 0% 50%, ${back} 20%, ${front} 21%, ${front} 34%, ${back} 35%, ${back})`;\n    size = `${scale * 2}px ${scale * 2}px`;\n  }\n  if (patternType === \"rectangles\") {\n    pattern = `repeating-linear-gradient(45deg, ${front} 25%, transparent 25%, transparent 75%, ${front} 75%, ${front}), repeating-linear-gradient(45deg, ${front} 25%, ${back} 25%, ${back} 75%, ${front} 75%, ${front})`;\n    position = `0 0, ${scale}px ${scale}px`;\n    size = `${scale * 2}px ${scale * 2}px`;\n  }\n  if (patternType === \"lines\") {\n    pattern = `linear-gradient(0deg, ${front} 50%, ${back} 50%)`;\n    size = `${scale}px ${scale}px`;\n  }\n  if (patternType === \"lines-vertical\") {\n    pattern = `linear-gradient(to right, ${front} 50%, ${back} 50%)`;\n    size = `${scale}px ${scale}px`;\n  }\n  if (patternType === \"paper\") {\n    pattern = `linear-gradient(${front} 2px, transparent 2px), linear-gradient(90deg, ${front} 2px, transparent 2px), linear-gradient(${front} 1px, transparent 1px), linear-gradient(90deg, ${front} 1px, ${back} 1px)`;\n    size = `${scale * 5}px ${scale * 5}px, ${scale * 5}px ${scale * 5}px, ${scale}px ${scale}px, ${scale}px ${scale}px`;\n    position = `-2px -2px, -2px -2px, -1px -1px, -1px -1px`;\n  }\n  if (patternType === \"crosses\") {\n    pattern = `url(\"data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='40' %3E%3Cg fill-rule='evenodd'%3E%3Cg fill='%23${frontWithoutHex}' %3E%3Cpath d='M0 38.59l2.83-2.83 1.41 1.41L1.41 40H0v-1.41zM0 1.4l2.83 2.83 1.41-1.41L1.41 0H0v1.41zM38.59 40l-2.83-2.83 1.41-1.41L40 38.59V40h-1.41zM40 1.41l-2.83 2.83-1.41-1.41L38.59 0H40v1.41zM20 18.6l2.83-2.83 1.41 1.41L21.41 20l2.83 2.83-1.41 1.41L20 21.41l-2.83 2.83-1.41-1.41L18.59 20l-2.83-2.83 1.41-1.41L20 18.59z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E\")`;\n    size = `${scale * 4}px ${scale * 4}px`;\n    addBackground = back;\n  }\n  if (patternType === \"wave-lines\") {\n    pattern = `url(\"data:image/svg+xml,%3Csvg width='100' height='20' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M21.184 20c.357-.13.72-.264 1.088-.402l1.768-.661C33.64 15.347 39.647 14 50 14c10.271 0 15.362 1.222 24.629 4.928.955.383 1.869.74 2.75 1.072h6.225c-2.51-.73-5.139-1.691-8.233-2.928C65.888 13.278 60.562 12 50 12c-10.626 0-16.855 1.397-26.66 5.063l-1.767.662c-2.475.923-4.66 1.674-6.724 2.275h6.335zm0-20C13.258 2.892 8.077 4 0 4V2c5.744 0 9.951-.574 14.85-2h6.334zM77.38 0C85.239 2.966 90.502 4 100 4V2c-6.842 0-11.386-.542-16.396-2h-6.225zM0 14c8.44 0 13.718-1.21 22.272-4.402l1.768-.661C33.64 5.347 39.647 4 50 4c10.271 0 15.362 1.222 24.629 4.928C84.112 12.722 89.438 14 100 14v-2c-10.271 0-15.362-1.222-24.629-4.928C65.888 3.278 60.562 2 50 2 39.374 2 33.145 3.397 23.34 7.063l-1.767.662C13.223 10.84 8.163 12 0 12v2z' fill='%23${frontWithoutHex}' fill-rule='evenodd'/%3E%3C/svg%3E\")`;\n    size = `${scale * 10}px ${scale * 2}px`;\n    addBackground = back;\n    if (shouldAnimate) {\n      backgroundPosAnimation = `${xScale * 10}px ${yScale * 2}px`;\n    }\n  }\n  if (patternType === \"clouds\") {\n    pattern = `url(\"data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='56' height='28'%3E%3Cpath fill='%23${frontWithoutHex}' d='M56 26v2h-7.75c2.3-1.27 4.94-2 7.75-2zm-26 2a2 2 0 1 0-4 0h-4.09A25.98 25.98 0 0 0 0 16v-2c.67 0 1.34.02 2 .07V14a2 2 0 0 0-2-2v-2a4 4 0 0 1 3.98 3.6 28.09 28.09 0 0 1 2.8-3.86A8 8 0 0 0 0 6V4a9.99 9.99 0 0 1 8.17 4.23c.94-.95 1.96-1.83 3.03-2.63A13.98 13.98 0 0 0 0 0h7.75c2 1.1 3.73 2.63 5.1 4.45 1.12-.72 2.3-1.37 3.53-1.93A20.1 20.1 0 0 0 14.28 0h2.7c.45.56.88 1.14 1.29 1.74 1.3-.48 2.63-.87 4-1.15-.11-.2-.23-.4-.36-.59H26v.07a28.4 28.4 0 0 1 4 0V0h4.09l-.37.59c1.38.28 2.72.67 4.01 1.15.4-.6.84-1.18 1.3-1.74h2.69a20.1 20.1 0 0 0-2.1 2.52c1.23.56 2.41 1.2 3.54 1.93A16.08 16.08 0 0 1 48.25 0H56c-4.58 0-8.65 2.2-11.2 5.6 1.07.8 2.09 1.68 3.03 2.63A9.99 9.99 0 0 1 56 4v2a8 8 0 0 0-6.77 3.74c1.03 1.2 1.97 2.5 2.79 3.86A4 4 0 0 1 56 10v2a2 2 0 0 0-2 2.07 28.4 28.4 0 0 1 2-.07v2c-9.2 0-17.3 4.78-21.91 12H30zM7.75 28H0v-2c2.81 0 5.46.73 7.75 2zM56 20v2c-5.6 0-10.65 2.3-14.28 6h-2.7c4.04-4.89 10.15-8 16.98-8zm-39.03 8h-2.69C10.65 24.3 5.6 22 0 22v-2c6.83 0 12.94 3.11 16.97 8zm15.01-.4a28.09 28.09 0 0 1 2.8-3.86 8 8 0 0 0-13.55 0c1.03 1.2 1.97 2.5 2.79 3.86a4 4 0 0 1 7.96 0zm14.29-11.86c1.3-.48 2.63-.87 4-1.15a25.99 25.99 0 0 0-44.55 0c1.38.28 2.72.67 4.01 1.15a21.98 21.98 0 0 1 36.54 0zm-5.43 2.71c1.13-.72 2.3-1.37 3.54-1.93a19.98 19.98 0 0 0-32.76 0c1.23.56 2.41 1.2 3.54 1.93a15.98 15.98 0 0 1 25.68 0zm-4.67 3.78c.94-.95 1.96-1.83 3.03-2.63a13.98 13.98 0 0 0-22.4 0c1.07.8 2.09 1.68 3.03 2.63a9.99 9.99 0 0 1 16.34 0z'%3E%3C/path%3E%3C/svg%3E\")`;\n    size = `${scale * 5.6}px ${scale * 2.8}px`;\n    addBackground = back;\n    if (shouldAnimate) {\n      backgroundPosAnimation = `${xScale * 5.6}px ${yScale * 2.8}px`;\n    }\n  }\n  if (patternType === \"stars-two\") {\n    pattern = `url(\"data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32'%3E%3Cpath fill='%23${frontWithoutHex}' d='m16 8.764 2.351 4.764 5.257.764L19.804 18l.898 5.236L16 20.764l-4.702 2.472.898-5.236-3.804-3.708 5.257-.764Z'%3E%3C/path%3E%3C/svg%3E\")`;\n    size = `${scale * 3.2}px ${scale * 3.2}px`;\n    addBackground = back;\n  }\n  if (patternType === \"wiggle\") {\n    pattern = `url(\"data:image/svg+xml,%3Csvg width='52' height='26' viewBox='0 0 52 26' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23${frontWithoutHex}' %3E%3Cpath d='M10 10c0-2.21-1.79-4-4-4-3.314 0-6-2.686-6-6h2c0 2.21 1.79 4 4 4 3.314 0 6 2.686 6 6 0 2.21 1.79 4 4 4 3.314 0 6 2.686 6 6 0 2.21 1.79 4 4 4v2c-3.314 0-6-2.686-6-6 0-2.21-1.79-4-4-4-3.314 0-6-2.686-6-6zm25.464-1.95l8.486 8.486-1.414 1.414-8.486-8.486 1.414-1.414z' /%3E%3C/g%3E%3C/g%3E%3C/svg%3E\")`;\n    addBackground = back;\n    size = `${scale * 5.2}px ${scale * 2.6}px`;\n    if (shouldAnimate) {\n      if (diagonal) {\n        backgroundPosAnimation = `-${scale * 5.2}px -${scale * 5.2}px`;\n      } else {\n        backgroundPosAnimation = `${scale * 5.2}px ${scale * 5.2}px`;\n      }\n    }\n  }\n  if (patternType === \"groovy\") {\n    pattern = `url(\"data:image/svg+xml,%3Csvg width='24' height='40' viewBox='0 0 24 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 40c5.523 0 10-4.477 10-10V0C4.477 0 0 4.477 0 10v30zm22 0c-5.523 0-10-4.477-10-10V0c5.523 0 10 4.477 10 10v30z' fill='%23${frontWithoutHex}' fill-rule='evenodd'/%3E%3C/svg%3E\")`;\n    addBackground = back;\n    size = `${scale * 2.4}px ${scale * 4}px`;\n    if (shouldAnimate) {\n      backgroundPosAnimation = `${xScale * 2.4}px ${yScale * 4}px`;\n    }\n  }\n  if (patternType === \"plus\") {\n    pattern = `url(\"data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23${frontWithoutHex}' %3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E\")`;\n    addBackground = back;\n    size = `${scale * 6}px ${scale * 6}px`;\n  }\n  return /*#__PURE__*/_jsx(motion.div, {\n    style: {\n      width: \"100%\",\n      height: \"100%\",\n      backgroundColor: addBackground ? addBackground : \"transparent\",\n      backgroundImage: pattern,\n      backgroundPosition: position,\n      backgroundSize: size,\n      backgroundRepeat: repeat,\n      backgroundBlendMode: blendMode,\n      borderRadius: radius,\n      filter: filter\n    },\n    animate: shouldAnimate && {\n      backgroundPosition: backgroundPosAnimation\n    },\n    transition: {\n      type: \"tween\",\n      ease: \"linear\",\n      duration: duration,\n      repeat: Infinity,\n      repeatType: \"loop\"\n    }\n  });\n}\n;\nPattern.displayName = \"Pattern\"; /* Property Controls */\naddPropertyControls(Pattern, {\n  patternType: {\n    type: ControlType.Enum,\n    defaultValue: \"wave-lines\",\n    options: [\"wave-lines\", \"clouds\", \"wiggle\", \"groovy\", \"plus\", \"circles\", \"rectangles\", \"lines\", \"lines-vertical\", \"diagonal\", \"diagonal-two\", \"blocks\", \"wave\", \"zigzag\", \"polka\", \"rhombus\", \"stars\", \"stars-two\", \"paper\", \"crosses\"],\n    optionTitles: [\"Wave Lines\", \"Clouds\", \"Wiggle\", \"Groovy\", \"Plus\", \"Circles\", \"Rectangles\", \"Lines\", \"Lines Vertical\", \"Diagonal\", \"Diagonal 2\", \"Blocks\", \"Wave\", \"ZigZag\", \"Polka\", \"Rhombus\", \"Stars\", \"Stars 2\", \"Paper\", \"Crosses\"],\n    title: \"Type\"\n  },\n  front: {\n    type: ControlType.Color,\n    title: \"Front\",\n    defaultValue: \"#FFF\"\n  },\n  back: {\n    type: ControlType.Color,\n    title: \"Back\",\n    defaultValue: \"#2DD\"\n  },\n  scale: {\n    type: ControlType.Number,\n    min: 1,\n    max: 100,\n    step: 1,\n    defaultValue: 10\n  },\n  radius: {\n    type: ControlType.Number,\n    min: 0,\n    max: 100,\n    step: 1,\n    defaultValue: 0\n  },\n  shouldAnimate: {\n    type: ControlType.Boolean,\n    title: \"Animate\",\n    defaultValue: false,\n    hidden(props) {\n      return props.patternType !== \"wave-lines\" && props.patternType !== \"wiggle\" && props.patternType !== \"clouds\" && props.patternType !== \"stars\" && props.patternType !== \"groovy\";\n    }\n  },\n  direction: {\n    type: ControlType.Enum,\n    title: \"Direction\",\n    options: [\"left\", \"right\", \"top\", \"bottom\"],\n    optionIcons: [\"direction-left\", \"direction-right\", \"direction-up\", \"direction-down\"],\n    optionTitles: [\"Left\", \"Right\", \"Top\", \"Bottom\"],\n    defaultValue: \"left\",\n    displaySegmentedControl: true,\n    hidden(props) {\n      return props.patternType === \"wiggle\" || props.shouldAnimate === false;\n    }\n  },\n  diagonal: {\n    type: ControlType.Boolean,\n    title: \"Direction\",\n    defaultValue: true,\n    enabledTitle: \"TL\",\n    disabledTitle: \"BR\",\n    hidden(props) {\n      return props.patternType !== \"wiggle\";\n    }\n  },\n  duration: {\n    type: ControlType.Number,\n    min: 0,\n    max: 50,\n    step: .1,\n    defaultValue: 5,\n    hidden(props) {\n      return props.shouldAnimate === false;\n    }\n  }\n});\nexport const __FramerMetadata__ = {\n  \"exports\": {\n    \"default\": {\n      \"type\": \"reactComponent\",\n      \"name\": \"Pattern\",\n      \"slots\": [],\n      \"annotations\": {\n        \"framerDisableUnlink\": \"*\",\n        \"framerIntrinsicHeight\": \"200\",\n        \"framerContractVersion\": \"1\",\n        \"framerSupportedLayoutWidth\": \"fixed\",\n        \"framerSupportedLayoutHeight\": \"fixed\",\n        \"framerIntrinsicWidth\": \"200\"\n      }\n    },\n    \"__FramerMetadata__\": {\n      \"type\": \"variable\"\n    }\n  }\n};\n//# sourceMappingURL=./Pattern.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", "const o=e=>e;let t;var h=e=>(t||(t=o(e.createElement(\"path\",{d:\"M10 20v-6h4v6h5v-8h3L12 3 2 12h3v8z\"}),\"Home\")),t);export{h 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    \"getIconSelection\": {\n      \"type\": \"function\",\n      \"annotations\": {\n        \"framerContractVersion\": \"1\"\n      }\n    },\n    \"containerStyles\": {\n      \"type\": \"variable\",\n      \"annotations\": {\n        \"framerContractVersion\": \"1\"\n      }\n    },\n    \"useIconSelection\": {\n      \"type\": \"function\",\n      \"annotations\": {\n        \"framerContractVersion\": \"1\"\n      }\n    },\n    \"defaultEvents\": {\n      \"type\": \"variable\",\n      \"annotations\": {\n        \"framerContractVersion\": \"1\"\n      }\n    },\n    \"__FramerMetadata__\": {\n      \"type\": \"variable\"\n    }\n  }\n};\n//# sourceMappingURL=./utils.map", "import { jsx as _jsx } from \"react/jsx-runtime\";\nimport * as React from \"react\";\nimport { useState, useEffect, useMemo, 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 HomeFactory from \"https://framer.com/m/material-icons/Home.js@0.0.32\";\nimport { defaultEvents, useIconSelection, getIconSelection } from \"https://framerusercontent.com/modules/Ma20hU0GGRxLxZphbywl/OSpwWF91FHPVFyQJjMHt/utils.js\";\nconst moduleBaseUrl = \"https://framer.com/m/material-icons/\";\nconst icons = {\n  AcUnit: 15,\n  AccessAlarm: 15,\n  AccessAlarms: 15,\n  AccessTime: 15,\n  AccessTimeFilled: 0,\n  Accessibility: 7,\n  AccessibilityNew: 0,\n  Accessible: 15,\n  AccessibleForward: 0,\n  AccountBalance: 2,\n  AccountBalanceWallet: 0,\n  AccountBox: 15,\n  AccountCircle: 7,\n  AccountTree: 15,\n  AdUnits: 15,\n  Adb: 15,\n  Add: 15,\n  AddAPhoto: 15,\n  AddAlarm: 15,\n  AddAlert: 15,\n  AddBox: 15,\n  AddBusiness: 15,\n  AddCircle: 15,\n  AddCircleOutline: 0,\n  AddComment: 15,\n  AddIcCall: 15,\n  AddLink: 15,\n  AddLocation: 15,\n  AddLocationAlt: 2,\n  AddModerator: 15,\n  AddPhotoAlternate: 0,\n  AddReaction: 15,\n  AddRoad: 15,\n  AddShoppingCart: 2,\n  AddTask: 15,\n  AddToDrive: 15,\n  AddToHomeScreen: 2,\n  AddToPhotos: 15,\n  AddToQueue: 15,\n  Addchart: 15,\n  Adjust: 15,\n  AdminPanelSettings: 0,\n  Agriculture: 15,\n  Air: 15,\n  AirlineSeatFlat: 2,\n  AirplaneTicket: 2,\n  AirplanemodeActive: 0,\n  AirplanemodeInactive: 0,\n  Airplay: 15,\n  AirportShuttle: 2,\n  Alarm: 15,\n  AlarmAdd: 15,\n  AlarmOff: 15,\n  AlarmOn: 15,\n  Album: 15,\n  AlignHorizontalLeft: 0,\n  AlignHorizontalRight: 0,\n  AlignVerticalBottom: 0,\n  AlignVerticalCenter: 0,\n  AlignVerticalTop: 0,\n  AllInbox: 15,\n  AllInclusive: 15,\n  AllOut: 15,\n  AltRoute: 15,\n  AlternateEmail: 2,\n  Analytics: 15,\n  Anchor: 15,\n  Android: 15,\n  Animation: 15,\n  Announcement: 15,\n  Aod: 15,\n  Apartment: 15,\n  Api: 15,\n  AppBlocking: 15,\n  AppRegistration: 2,\n  AppSettingsAlt: 2,\n  Apple: 0,\n  Approval: 15,\n  Apps: 15,\n  Architecture: 15,\n  Archive: 15,\n  ArrowBack: 15,\n  ArrowBackIos: 15,\n  ArrowBackIosNew: 2,\n  ArrowCircleDown: 2,\n  ArrowCircleUp: 7,\n  ArrowDownward: 7,\n  ArrowDropDown: 7,\n  ArrowDropDownCircle: 0,\n  ArrowDropUp: 15,\n  ArrowForward: 15,\n  ArrowForwardIos: 2,\n  ArrowLeft: 15,\n  ArrowRight: 15,\n  ArrowRightAlt: 7,\n  ArrowUpward: 15,\n  ArtTrack: 15,\n  Article: 15,\n  AspectRatio: 15,\n  Assessment: 15,\n  Assignment: 15,\n  AssignmentInd: 7,\n  AssignmentLate: 2,\n  AssignmentReturn: 0,\n  AssignmentReturned: 0,\n  AssignmentTurnedIn: 0,\n  Assistant: 15,\n  AssistantDirection: 0,\n  AssistantPhoto: 2,\n  Atm: 15,\n  AttachEmail: 15,\n  AttachFile: 15,\n  AttachMoney: 15,\n  Attachment: 15,\n  Attractions: 15,\n  Attribution: 15,\n  Audiotrack: 15,\n  AutoAwesome: 15,\n  AutoAwesomeMosaic: 0,\n  AutoAwesomeMotion: 0,\n  AutoDelete: 15,\n  AutoFixHigh: 15,\n  AutoFixNormal: 7,\n  AutoFixOff: 15,\n  AutoGraph: 15,\n  AutoStories: 15,\n  AutofpsSelect: 7,\n  Autorenew: 15,\n  AvTimer: 15,\n  BabyChangingStation: 0,\n  Backpack: 15,\n  Backspace: 15,\n  Backup: 15,\n  BackupTable: 15,\n  Badge: 15,\n  BakeryDining: 15,\n  Balcony: 15,\n  Ballot: 15,\n  BarChart: 15,\n  BatchPrediction: 2,\n  Bathroom: 15,\n  Bathtub: 15,\n  Battery20: 15,\n  Battery30: 15,\n  Battery50: 15,\n  Battery60: 15,\n  Battery80: 15,\n  Battery90: 15,\n  BatteryAlert: 15,\n  BatteryCharging20: 0,\n  BatteryCharging30: 0,\n  BatteryCharging50: 0,\n  BatteryCharging60: 0,\n  BatteryCharging80: 0,\n  BatteryCharging90: 0,\n  BatteryChargingFull: 0,\n  BatteryFull: 15,\n  BatterySaver: 15,\n  BatteryStd: 15,\n  BatteryUnknown: 2,\n  BeachAccess: 15,\n  Bed: 15,\n  BedroomBaby: 15,\n  BedroomChild: 15,\n  BedroomParent: 7,\n  Bedtime: 15,\n  Beenhere: 15,\n  Bento: 15,\n  BikeScooter: 15,\n  Biotech: 15,\n  Blender: 15,\n  Block: 15,\n  Bloodtype: 15,\n  Bluetooth: 15,\n  BluetoothAudio: 2,\n  BluetoothConnected: 0,\n  BluetoothDisabled: 0,\n  BluetoothDrive: 2,\n  BluetoothSearching: 0,\n  BlurCircular: 15,\n  BlurLinear: 15,\n  BlurOff: 15,\n  BlurOn: 15,\n  Bolt: 15,\n  Book: 15,\n  BookOnline: 15,\n  Bookmark: 15,\n  BookmarkAdd: 15,\n  BookmarkAdded: 7,\n  BookmarkBorder: 2,\n  BookmarkRemove: 2,\n  Bookmarks: 15,\n  BorderAll: 15,\n  BorderBottom: 15,\n  BorderClear: 15,\n  BorderColor: 15,\n  BorderHorizontal: 0,\n  BorderInner: 15,\n  BorderLeft: 15,\n  BorderOuter: 15,\n  BorderRight: 15,\n  BorderStyle: 15,\n  BorderTop: 15,\n  BorderVertical: 2,\n  BrandingWatermark: 0,\n  BreakfastDining: 2,\n  Brightness1: 15,\n  Brightness2: 15,\n  Brightness3: 15,\n  Brightness4: 15,\n  Brightness5: 15,\n  Brightness6: 15,\n  Brightness7: 15,\n  BrightnessAuto: 2,\n  BrightnessHigh: 2,\n  BrightnessLow: 7,\n  BrightnessMedium: 0,\n  BrokenImage: 15,\n  BrowserNotSupported: 0,\n  BrunchDining: 15,\n  Brush: 15,\n  BubbleChart: 15,\n  BugReport: 15,\n  Build: 15,\n  BuildCircle: 15,\n  Bungalow: 15,\n  BurstMode: 15,\n  BusAlert: 15,\n  Business: 15,\n  BusinessCenter: 2,\n  Cabin: 15,\n  Cable: 15,\n  Cached: 15,\n  Cake: 15,\n  Calculate: 15,\n  CalendarToday: 7,\n  CalendarViewDay: 2,\n  CalendarViewMonth: 0,\n  CalendarViewWeek: 0,\n  Call: 15,\n  CallEnd: 15,\n  CallMade: 15,\n  CallMerge: 15,\n  CallMissed: 15,\n  CallMissedOutgoing: 0,\n  CallReceived: 15,\n  CallSplit: 15,\n  CallToAction: 15,\n  Camera: 15,\n  CameraAlt: 15,\n  CameraEnhance: 7,\n  CameraFront: 15,\n  CameraIndoor: 15,\n  CameraOutdoor: 7,\n  CameraRear: 15,\n  CameraRoll: 15,\n  Cameraswitch: 15,\n  Campaign: 15,\n  Cancel: 15,\n  CancelPresentation: 0,\n  CancelScheduleSend: 0,\n  CarRental: 15,\n  CarRepair: 15,\n  CardGiftcard: 15,\n  CardMembership: 2,\n  CardTravel: 15,\n  Carpenter: 15,\n  Cases: 15,\n  Casino: 15,\n  Cast: 15,\n  CastConnected: 7,\n  CastForEducation: 0,\n  CatchingPokemon: 2,\n  Category: 15,\n  Celebration: 15,\n  CellWifi: 15,\n  CenterFocusStrong: 0,\n  CenterFocusWeak: 2,\n  Chair: 15,\n  ChairAlt: 15,\n  Chalet: 15,\n  ChangeCircle: 15,\n  ChangeHistory: 7,\n  ChargingStation: 2,\n  Chat: 15,\n  ChatBubble: 15,\n  ChatBubbleOutline: 0,\n  Check: 15,\n  CheckBox: 15,\n  CheckBoxOutlineBlank: 0,\n  CheckCircle: 15,\n  CheckCircleOutline: 0,\n  Checkroom: 15,\n  ChevronLeft: 15,\n  ChevronRight: 15,\n  ChildCare: 15,\n  ChildFriendly: 7,\n  ChromeReaderMode: 0,\n  Circle: 15,\n  CircleNotifications: 0,\n  Class: 15,\n  CleanHands: 15,\n  CleaningServices: 0,\n  Clear: 15,\n  ClearAll: 15,\n  Close: 15,\n  CloseFullscreen: 2,\n  ClosedCaption: 7,\n  ClosedCaptionOff: 0,\n  Cloud: 15,\n  CloudCircle: 15,\n  CloudDone: 15,\n  CloudDownload: 7,\n  CloudOff: 15,\n  CloudQueue: 15,\n  CloudUpload: 15,\n  Code: 15,\n  CodeOff: 15,\n  Coffee: 15,\n  CoffeeMaker: 15,\n  Collections: 15,\n  CollectionsBookmark: 0,\n  ColorLens: 15,\n  Colorize: 15,\n  Comment: 15,\n  CommentBank: 15,\n  Commute: 15,\n  Compare: 15,\n  CompareArrows: 7,\n  CompassCalibration: 0,\n  Compress: 15,\n  Computer: 15,\n  ConfirmationNumber: 0,\n  ConnectedTv: 15,\n  Construction: 15,\n  ContactMail: 15,\n  ContactPage: 15,\n  ContactPhone: 15,\n  ContactSupport: 2,\n  Contactless: 15,\n  Contacts: 15,\n  ContentCopy: 15,\n  ContentCut: 15,\n  ContentPaste: 15,\n  ContentPasteOff: 2,\n  ControlCamera: 7,\n  ControlPoint: 15,\n  CopyAll: 15,\n  Copyright: 15,\n  Coronavirus: 15,\n  CorporateFare: 7,\n  Cottage: 15,\n  Countertops: 15,\n  Create: 15,\n  CreateNewFolder: 2,\n  CreditCard: 15,\n  CreditCardOff: 7,\n  CreditScore: 15,\n  Crib: 15,\n  Crop: 15,\n  Crop169: 15,\n  Crop32: 15,\n  Crop54: 15,\n  Crop75: 15,\n  CropDin: 15,\n  CropFree: 15,\n  CropLandscape: 7,\n  CropOriginal: 15,\n  CropPortrait: 15,\n  CropRotate: 15,\n  CropSquare: 15,\n  Dangerous: 15,\n  DarkMode: 15,\n  Dashboard: 15,\n  DashboardCustomize: 0,\n  DataSaverOff: 15,\n  DataSaverOn: 15,\n  DataUsage: 15,\n  DateRange: 15,\n  Deck: 15,\n  Dehaze: 15,\n  Delete: 15,\n  DeleteForever: 7,\n  DeleteOutline: 7,\n  DeleteSweep: 15,\n  DeliveryDining: 2,\n  DepartureBoard: 2,\n  Description: 15,\n  DesignServices: 2,\n  DesktopMac: 15,\n  DesktopWindows: 2,\n  Details: 15,\n  DeveloperBoard: 2,\n  DeveloperBoardOff: 0,\n  DeveloperMode: 7,\n  DeviceHub: 15,\n  DeviceThermostat: 0,\n  DeviceUnknown: 7,\n  Devices: 15,\n  DevicesOther: 15,\n  DialerSip: 15,\n  Dialpad: 15,\n  Dining: 15,\n  DinnerDining: 15,\n  Directions: 15,\n  DirectionsBike: 2,\n  DirectionsBoat: 2,\n  DirectionsBoatFilled: 0,\n  DirectionsBus: 7,\n  DirectionsBusFilled: 0,\n  DirectionsCar: 7,\n  DirectionsCarFilled: 0,\n  DirectionsOff: 7,\n  DirectionsRailway: 0,\n  DirectionsRun: 7,\n  DirectionsSubway: 0,\n  DirectionsTransit: 0,\n  DirectionsWalk: 2,\n  DirtyLens: 15,\n  DisabledByDefault: 0,\n  DiscFull: 15,\n  Dns: 15,\n  DoDisturb: 15,\n  DoDisturbAlt: 15,\n  DoDisturbOff: 15,\n  DoDisturbOn: 15,\n  DoNotDisturb: 15,\n  DoNotDisturbAlt: 2,\n  DoNotDisturbOff: 2,\n  DoNotDisturbOn: 2,\n  DoNotStep: 15,\n  DoNotTouch: 15,\n  Dock: 15,\n  DocumentScanner: 2,\n  Domain: 15,\n  DomainDisabled: 2,\n  DomainVerification: 0,\n  Done: 15,\n  DoneAll: 15,\n  DoneOutline: 15,\n  DonutLarge: 15,\n  DonutSmall: 15,\n  DoorBack: 15,\n  DoorFront: 15,\n  DoorSliding: 15,\n  Doorbell: 15,\n  DoubleArrow: 15,\n  DownhillSkiing: 2,\n  Download: 15,\n  DownloadDone: 15,\n  DownloadForOffline: 0,\n  Downloading: 15,\n  Drafts: 15,\n  DragHandle: 15,\n  DragIndicator: 7,\n  DriveEta: 15,\n  DriveFileMove: 7,\n  DriveFolderUpload: 0,\n  Dry: 15,\n  DryCleaning: 15,\n  Duo: 15,\n  Dvr: 15,\n  DynamicFeed: 15,\n  DynamicForm: 15,\n  EMobiledata: 15,\n  Earbuds: 15,\n  EarbudsBattery: 2,\n  East: 15,\n  Eco: 15,\n  EdgesensorHigh: 2,\n  EdgesensorLow: 7,\n  Edit: 15,\n  EditAttributes: 2,\n  EditLocation: 15,\n  EditLocationAlt: 2,\n  EditNotifications: 0,\n  EditOff: 15,\n  EditRoad: 15,\n  EightK: 15,\n  EightKPlus: 15,\n  EightMp: 15,\n  EightteenMp: 15,\n  Eject: 15,\n  Elderly: 15,\n  ElectricBike: 15,\n  ElectricCar: 15,\n  ElectricMoped: 7,\n  ElectricRickshaw: 0,\n  ElectricScooter: 2,\n  ElectricalServices: 0,\n  Elevator: 15,\n  ElevenMp: 15,\n  Email: 15,\n  EmojiEmotions: 7,\n  EmojiEvents: 15,\n  EmojiFlags: 15,\n  EmojiFoodBeverage: 0,\n  EmojiNature: 15,\n  EmojiObjects: 15,\n  EmojiPeople: 15,\n  EmojiSymbols: 15,\n  EmojiTransportation: 0,\n  Engineering: 15,\n  EnhancedEncryption: 0,\n  Equalizer: 15,\n  Error: 15,\n  ErrorOutline: 15,\n  Escalator: 15,\n  EscalatorWarning: 0,\n  Euro: 15,\n  EuroSymbol: 15,\n  EvStation: 15,\n  Event: 15,\n  EventAvailable: 2,\n  EventBusy: 15,\n  EventNote: 15,\n  EventSeat: 15,\n  ExitToApp: 15,\n  Expand: 15,\n  ExpandLess: 15,\n  ExpandMore: 15,\n  Explicit: 15,\n  Explore: 15,\n  ExploreOff: 15,\n  Exposure: 15,\n  Extension: 15,\n  ExtensionOff: 15,\n  Face: 15,\n  FaceRetouchingOff: 0,\n  Facebook: 15,\n  FactCheck: 15,\n  FamilyRestroom: 2,\n  FastForward: 15,\n  FastRewind: 15,\n  Fastfood: 15,\n  Favorite: 15,\n  FavoriteBorder: 2,\n  FeaturedPlayList: 0,\n  FeaturedVideo: 7,\n  Feed: 15,\n  Feedback: 15,\n  Female: 15,\n  Fence: 15,\n  Festival: 15,\n  FiberDvr: 15,\n  FiberManualRecord: 0,\n  FiberNew: 15,\n  FiberPin: 15,\n  FiberSmartRecord: 0,\n  FileCopy: 15,\n  FileDownload: 15,\n  FileDownloadDone: 0,\n  FileDownloadOff: 2,\n  FilePresent: 15,\n  FileUpload: 15,\n  Filter: 15,\n  Filter1: 15,\n  Filter2: 15,\n  Filter3: 15,\n  Filter4: 15,\n  Filter5: 15,\n  Filter6: 15,\n  Filter7: 15,\n  Filter8: 15,\n  Filter9: 15,\n  Filter9Plus: 15,\n  FilterAlt: 15,\n  FilterBAndW: 15,\n  FilterCenterFocus: 0,\n  FilterDrama: 15,\n  FilterFrames: 15,\n  FilterHdr: 15,\n  FilterList: 15,\n  FilterNone: 15,\n  FilterTiltShift: 2,\n  FilterVintage: 7,\n  FindInPage: 15,\n  FindReplace: 15,\n  Fingerprint: 15,\n  FireExtinguisher: 0,\n  Fireplace: 15,\n  FirstPage: 15,\n  FitScreen: 15,\n  FitnessCenter: 7,\n  FiveG: 15,\n  FiveK: 15,\n  FiveKPlus: 15,\n  FiveMp: 15,\n  FivteenMp: 15,\n  Flag: 15,\n  Flaky: 15,\n  Flare: 15,\n  FlashAuto: 15,\n  FlashOff: 15,\n  FlashOn: 15,\n  FlashlightOff: 7,\n  FlashlightOn: 15,\n  Flatware: 15,\n  Flight: 15,\n  FlightLand: 15,\n  FlightTakeoff: 7,\n  Flip: 15,\n  FlipCameraAndroid: 0,\n  FlipCameraIos: 7,\n  FlipToBack: 15,\n  FlipToFront: 15,\n  Flourescent: 15,\n  FlutterDash: 15,\n  FmdBad: 15,\n  FmdGood: 15,\n  Folder: 15,\n  FolderOpen: 15,\n  FolderShared: 15,\n  FolderSpecial: 7,\n  FollowTheSigns: 2,\n  FontDownload: 15,\n  FontDownloadOff: 2,\n  FoodBank: 15,\n  FormatAlignCenter: 0,\n  FormatAlignJustify: 0,\n  FormatAlignLeft: 2,\n  FormatAlignRight: 0,\n  FormatBold: 15,\n  FormatClear: 15,\n  FormatColorFill: 2,\n  FormatColorReset: 0,\n  FormatColorText: 2,\n  FormatIndentDecrease: 0,\n  FormatIndentIncrease: 0,\n  FormatItalic: 15,\n  FormatLineSpacing: 0,\n  FormatListBulleted: 0,\n  FormatListNumbered: 0,\n  FormatPaint: 15,\n  FormatQuote: 15,\n  FormatShapes: 15,\n  FormatSize: 15,\n  FormatStrikethrough: 0,\n  FormatUnderlined: 0,\n  Forum: 15,\n  Forward: 15,\n  Forward10: 15,\n  Forward30: 15,\n  Forward5: 15,\n  ForwardToInbox: 2,\n  Foundation: 15,\n  FourGMobiledata: 2,\n  FourGPlusMobiledata: 0,\n  FourK: 15,\n  FourKPlus: 15,\n  FourMp: 15,\n  FourteenMp: 15,\n  FreeBreakfast: 7,\n  Fullscreen: 15,\n  FullscreenExit: 2,\n  Functions: 15,\n  GMobiledata: 15,\n  GTranslate: 15,\n  Gamepad: 15,\n  Games: 15,\n  Garage: 15,\n  Gavel: 15,\n  Gesture: 15,\n  GetApp: 15,\n  Gif: 15,\n  GitHub: 0,\n  Gite: 15,\n  GolfCourse: 15,\n  Google: 0,\n  GppBad: 15,\n  GppGood: 15,\n  GppMaybe: 15,\n  GpsFixed: 15,\n  GpsNotFixed: 15,\n  GpsOff: 15,\n  Grade: 15,\n  Gradient: 15,\n  Grading: 15,\n  Grain: 15,\n  GraphicEq: 15,\n  Grass: 15,\n  Grid3x3: 15,\n  Grid4x4: 15,\n  GridGoldenratio: 2,\n  GridOff: 15,\n  GridOn: 15,\n  GridView: 15,\n  Group: 15,\n  GroupAdd: 15,\n  GroupWork: 15,\n  Groups: 15,\n  HMobiledata: 15,\n  HPlusMobiledata: 2,\n  Hail: 15,\n  Handyman: 15,\n  Hardware: 15,\n  Hd: 15,\n  HdrAuto: 15,\n  HdrAutoSelect: 7,\n  HdrEnhancedSelect: 0,\n  HdrOff: 15,\n  HdrOffSelect: 15,\n  HdrOn: 15,\n  HdrOnSelect: 15,\n  HdrPlus: 15,\n  HdrStrong: 15,\n  HdrWeak: 15,\n  Headphones: 15,\n  HeadphonesBattery: 0,\n  Headset: 15,\n  HeadsetMic: 15,\n  HeadsetOff: 15,\n  Healing: 15,\n  HealthAndSafety: 2,\n  Hearing: 15,\n  HearingDisabled: 2,\n  Height: 15,\n  Help: 15,\n  HelpCenter: 15,\n  HelpOutline: 15,\n  Hevc: 15,\n  HideImage: 15,\n  HideSource: 15,\n  HighQuality: 15,\n  Highlight: 15,\n  HighlightAlt: 15,\n  HighlightOff: 15,\n  Hiking: 15,\n  History: 15,\n  HistoryEdu: 15,\n  HistoryToggleOff: 0,\n  HolidayVillage: 2,\n  Home: 15,\n  HomeMax: 15,\n  HomeMini: 15,\n  HomeRepairService: 0,\n  HomeWork: 15,\n  HorizontalRule: 2,\n  HorizontalSplit: 2,\n  HotTub: 15,\n  Hotel: 15,\n  HourglassBottom: 2,\n  HourglassDisabled: 0,\n  HourglassEmpty: 2,\n  HourglassFull: 7,\n  HourglassTop: 15,\n  House: 15,\n  HouseSiding: 15,\n  Houseboat: 15,\n  HowToReg: 15,\n  HowToVote: 15,\n  Http: 15,\n  Https: 15,\n  Hvac: 15,\n  IceSkating: 15,\n  Icecream: 15,\n  Image: 15,\n  ImageAspectRatio: 0,\n  ImageNotSupported: 0,\n  ImageSearch: 15,\n  ImagesearchRoller: 0,\n  ImportContacts: 2,\n  ImportExport: 15,\n  ImportantDevices: 0,\n  Inbox: 15,\n  Info: 15,\n  Input: 15,\n  InsertChart: 15,\n  InsertComment: 7,\n  InsertDriveFile: 2,\n  InsertEmoticon: 2,\n  InsertInvitation: 0,\n  InsertLink: 15,\n  InsertPhoto: 15,\n  Insights: 15,\n  Instagram: 0,\n  Inventory: 15,\n  Inventory2: 15,\n  InvertColors: 15,\n  InvertColorsOff: 2,\n  IosShare: 15,\n  Iron: 15,\n  Iso: 15,\n  Kayaking: 15,\n  Keyboard: 15,\n  KeyboardAlt: 15,\n  KeyboardArrowDown: 0,\n  KeyboardArrowLeft: 0,\n  KeyboardArrowRight: 0,\n  KeyboardArrowUp: 2,\n  KeyboardBackspace: 0,\n  KeyboardCapslock: 0,\n  KeyboardHide: 15,\n  KeyboardReturn: 2,\n  KeyboardTab: 15,\n  KeyboardVoice: 7,\n  KingBed: 15,\n  Kitchen: 15,\n  Kitesurfing: 15,\n  Label: 15,\n  LabelImportant: 2,\n  LabelOff: 15,\n  Landscape: 15,\n  Language: 15,\n  Laptop: 15,\n  LaptopChromebook: 0,\n  LaptopMac: 15,\n  LaptopWindows: 7,\n  LastPage: 15,\n  Launch: 15,\n  Layers: 15,\n  LayersClear: 15,\n  Leaderboard: 15,\n  LeakAdd: 15,\n  LeakRemove: 15,\n  LegendToggle: 15,\n  Lens: 15,\n  LensBlur: 15,\n  LibraryAdd: 15,\n  LibraryAddCheck: 2,\n  LibraryBooks: 15,\n  LibraryMusic: 15,\n  Light: 15,\n  LightMode: 15,\n  Lightbulb: 15,\n  LineStyle: 15,\n  LineWeight: 15,\n  LinearScale: 15,\n  Link: 15,\n  LinkOff: 15,\n  LinkedCamera: 15,\n  LinkedIn: 0,\n  Liquor: 15,\n  List: 15,\n  ListAlt: 15,\n  LiveHelp: 15,\n  LiveTv: 15,\n  Living: 15,\n  LocalActivity: 7,\n  LocalAirport: 15,\n  LocalAtm: 15,\n  LocalBar: 15,\n  LocalCafe: 15,\n  LocalCarWash: 15,\n  LocalDining: 15,\n  LocalDrink: 15,\n  LocalFireDepartment: 0,\n  LocalFlorist: 15,\n  LocalGasStation: 2,\n  LocalGroceryStore: 0,\n  LocalHospital: 7,\n  LocalHotel: 15,\n  LocalLaundryService: 0,\n  LocalLibrary: 15,\n  LocalMall: 15,\n  LocalMovies: 15,\n  LocalOffer: 15,\n  LocalParking: 15,\n  LocalPharmacy: 7,\n  LocalPhone: 15,\n  LocalPizza: 15,\n  LocalPlay: 15,\n  LocalPolice: 15,\n  LocalPostOffice: 2,\n  LocalPrintshop: 2,\n  LocalSee: 15,\n  LocalShipping: 7,\n  LocalTaxi: 15,\n  LocationCity: 15,\n  LocationDisabled: 0,\n  LocationOff: 15,\n  LocationOn: 15,\n  LocationSearching: 0,\n  Lock: 15,\n  LockClock: 15,\n  LockOpen: 15,\n  Login: 15,\n  Logout: 15,\n  Looks: 15,\n  Looks3: 15,\n  Looks4: 15,\n  Looks5: 15,\n  Looks6: 15,\n  LooksOne: 15,\n  LooksTwo: 15,\n  Loop: 15,\n  Loupe: 15,\n  LowPriority: 15,\n  Loyalty: 15,\n  LteMobiledata: 7,\n  LtePlusMobiledata: 0,\n  Luggage: 15,\n  LunchDining: 15,\n  Mail: 15,\n  MailOutline: 15,\n  Male: 15,\n  ManageAccounts: 2,\n  ManageSearch: 15,\n  Map: 15,\n  MapsHomeWork: 15,\n  MapsUgc: 15,\n  Margin: 15,\n  MarkAsUnread: 15,\n  MarkChatRead: 15,\n  MarkChatUnread: 2,\n  MarkEmailRead: 7,\n  MarkEmailUnread: 2,\n  Markunread: 15,\n  MarkunreadMailbox: 0,\n  Masks: 15,\n  Maximize: 15,\n  MediaBluetoothOff: 0,\n  MediaBluetoothOn: 0,\n  Mediation: 15,\n  MedicalServices: 2,\n  Medication: 15,\n  MeetingRoom: 15,\n  Memory: 15,\n  Menu: 15,\n  MenuBook: 15,\n  MenuOpen: 15,\n  MergeType: 15,\n  Message: 15,\n  Mic: 15,\n  MicExternalOff: 2,\n  MicExternalOn: 7,\n  MicNone: 15,\n  MicOff: 15,\n  Microwave: 15,\n  MilitaryTech: 15,\n  Minimize: 15,\n  MissedVideoCall: 2,\n  Mms: 15,\n  MobileFriendly: 2,\n  MobileOff: 15,\n  MobileScreenShare: 0,\n  MobiledataOff: 7,\n  Mode: 15,\n  ModeComment: 15,\n  ModeEdit: 15,\n  ModeEditOutline: 2,\n  ModeNight: 15,\n  ModeStandby: 15,\n  ModelTraining: 7,\n  MonetizationOn: 2,\n  Money: 15,\n  MoneyOff: 15,\n  MoneyOffCsred: 7,\n  Monitor: 15,\n  MonitorWeight: 7,\n  MonochromePhotos: 0,\n  Mood: 15,\n  MoodBad: 15,\n  Moped: 15,\n  More: 15,\n  MoreHoriz: 15,\n  MoreTime: 15,\n  MoreVert: 15,\n  MotionPhotosAuto: 0,\n  MotionPhotosOff: 2,\n  Mouse: 15,\n  MoveToInbox: 15,\n  Movie: 15,\n  MovieCreation: 7,\n  MovieFilter: 15,\n  Moving: 15,\n  Mp: 15,\n  MultilineChart: 2,\n  MultipleStop: 15,\n  Museum: 15,\n  MusicNote: 15,\n  MusicOff: 15,\n  MusicVideo: 15,\n  MyLocation: 15,\n  Nat: 15,\n  Nature: 15,\n  NaturePeople: 15,\n  NavigateBefore: 2,\n  NavigateNext: 15,\n  Navigation: 15,\n  NearMe: 15,\n  NearMeDisabled: 2,\n  NearbyError: 15,\n  NearbyOff: 15,\n  NetworkCell: 15,\n  NetworkCheck: 15,\n  NetworkLocked: 7,\n  NetworkWifi: 15,\n  NewReleases: 15,\n  NextPlan: 15,\n  NextWeek: 15,\n  Nfc: 15,\n  NightShelter: 15,\n  Nightlife: 15,\n  Nightlight: 15,\n  NightlightRound: 2,\n  NightsStay: 15,\n  NineK: 15,\n  NineKPlus: 15,\n  NineMp: 15,\n  NineteenMp: 15,\n  NoAccounts: 15,\n  NoBackpack: 15,\n  NoCell: 15,\n  NoDrinks: 15,\n  NoEncryption: 15,\n  NoFlash: 15,\n  NoFood: 15,\n  NoLuggage: 15,\n  NoMeals: 15,\n  NoMeetingRoom: 7,\n  NoPhotography: 7,\n  NoSim: 15,\n  NoStroller: 15,\n  NoTransfer: 15,\n  NordicWalking: 7,\n  North: 15,\n  NorthEast: 15,\n  NorthWest: 15,\n  NotAccessible: 7,\n  NotInterested: 7,\n  NotListedLocation: 0,\n  NotStarted: 15,\n  Note: 15,\n  NoteAdd: 15,\n  NoteAlt: 15,\n  Notes: 15,\n  NotificationAdd: 2,\n  Notifications: 7,\n  NotificationsActive: 0,\n  NotificationsNone: 0,\n  NotificationsOff: 0,\n  NotificationsPaused: 0,\n  OfflineBolt: 15,\n  OfflinePin: 15,\n  OfflineShare: 15,\n  OndemandVideo: 7,\n  OneK: 15,\n  OneKPlus: 15,\n  OneKk: 15,\n  OnlinePrediction: 0,\n  Opacity: 15,\n  OpenInBrowser: 7,\n  OpenInFull: 15,\n  OpenInNew: 15,\n  OpenInNewOff: 15,\n  OpenWith: 15,\n  OtherHouses: 15,\n  Outbound: 15,\n  Outbox: 15,\n  OutdoorGrill: 15,\n  Outlet: 15,\n  Padding: 15,\n  Pages: 15,\n  Pageview: 15,\n  Paid: 15,\n  Palette: 15,\n  PanTool: 15,\n  Panorama: 15,\n  PanoramaFishEye: 2,\n  PanoramaHorizontal: 0,\n  PanoramaPhotosphere: 0,\n  PanoramaVertical: 0,\n  PanoramaWideAngle: 0,\n  Paragliding: 15,\n  Park: 15,\n  PartyMode: 15,\n  Password: 15,\n  Pattern: 15,\n  Pause: 15,\n  PauseCircle: 15,\n  PauseCircleFilled: 0,\n  PauseCircleOutline: 0,\n  PausePresentation: 0,\n  Payment: 15,\n  Payments: 15,\n  PedalBike: 15,\n  Pending: 15,\n  PendingActions: 2,\n  People: 15,\n  PeopleAlt: 15,\n  PeopleOutline: 7,\n  PermCameraMic: 7,\n  PermContactCalendar: 0,\n  PermDataSetting: 2,\n  PermIdentity: 15,\n  PermMedia: 15,\n  PermPhoneMsg: 15,\n  PermScanWifi: 15,\n  Person: 15,\n  PersonAdd: 15,\n  PersonAddAlt: 15,\n  PersonAddAlt1: 7,\n  PersonAddDisabled: 0,\n  PersonOff: 15,\n  PersonOutline: 7,\n  PersonPin: 15,\n  PersonPinCircle: 2,\n  PersonRemove: 15,\n  PersonRemoveAlt1: 0,\n  PersonSearch: 15,\n  PersonalVideo: 7,\n  PestControl: 15,\n  PestControlRodent: 0,\n  Pets: 15,\n  Phone: 15,\n  PhoneAndroid: 15,\n  PhoneCallback: 7,\n  PhoneDisabled: 7,\n  PhoneEnabled: 15,\n  PhoneForwarded: 2,\n  PhoneInTalk: 15,\n  PhoneIphone: 15,\n  PhoneLocked: 15,\n  PhoneMissed: 15,\n  PhonePaused: 15,\n  Phonelink: 15,\n  PhonelinkErase: 2,\n  PhonelinkLock: 7,\n  PhonelinkOff: 15,\n  PhonelinkRing: 7,\n  PhonelinkSetup: 2,\n  Photo: 15,\n  PhotoAlbum: 15,\n  PhotoCamera: 15,\n  PhotoCameraBack: 2,\n  PhotoCameraFront: 0,\n  PhotoFilter: 15,\n  PhotoLibrary: 15,\n  PhotoSizeSelectLarge: 0,\n  PhotoSizeSelectSmall: 0,\n  Piano: 15,\n  PianoOff: 15,\n  PictureAsPdf: 15,\n  PictureInPicture: 0,\n  PictureInPictureAlt: 0,\n  PieChart: 15,\n  PieChartOutline: 2,\n  Pin: 15,\n  PinDrop: 15,\n  Pinterest: 0,\n  PivotTableChart: 2,\n  Place: 15,\n  Plagiarism: 15,\n  PlayArrow: 15,\n  PlayCircle: 15,\n  PlayCircleFilled: 0,\n  PlayCircleOutline: 0,\n  PlayDisabled: 15,\n  PlayForWork: 15,\n  PlayLesson: 15,\n  PlaylistAdd: 15,\n  PlaylistAddCheck: 0,\n  PlaylistPlay: 15,\n  Plumbing: 15,\n  PlusOne: 15,\n  Podcasts: 15,\n  PointOfSale: 15,\n  Policy: 15,\n  Poll: 15,\n  Pool: 15,\n  PortableWifiOff: 2,\n  Portrait: 15,\n  PostAdd: 15,\n  Power: 15,\n  PowerInput: 15,\n  PowerOff: 15,\n  PowerSettingsNew: 0,\n  PregnantWoman: 7,\n  PresentToAll: 15,\n  Preview: 15,\n  PriceChange: 15,\n  PriceCheck: 15,\n  Print: 15,\n  PrintDisabled: 7,\n  PriorityHigh: 15,\n  PrivacyTip: 15,\n  Psychology: 15,\n  Public: 15,\n  PublicOff: 15,\n  Publish: 15,\n  PublishedWithChanges: 0,\n  PushPin: 15,\n  QrCode: 15,\n  QrCode2: 15,\n  QrCodeScanner: 7,\n  QueryBuilder: 15,\n  QueryStats: 15,\n  QuestionAnswer: 2,\n  Queue: 15,\n  QueueMusic: 15,\n  QueuePlayNext: 7,\n  Quickreply: 15,\n  Quiz: 15,\n  RMobiledata: 15,\n  Radar: 15,\n  Radio: 15,\n  RadioButtonChecked: 0,\n  RadioButtonUnchecked: 0,\n  RailwayAlert: 15,\n  RamenDining: 15,\n  RateReview: 15,\n  RawOff: 15,\n  RawOn: 15,\n  ReadMore: 15,\n  Receipt: 15,\n  ReceiptLong: 15,\n  RecentActors: 15,\n  Recommend: 15,\n  RecordVoiceOver: 2,\n  Reddit: 0,\n  Redeem: 15,\n  Redo: 15,\n  ReduceCapacity: 2,\n  Refresh: 15,\n  RememberMe: 15,\n  Remove: 15,\n  RemoveCircle: 15,\n  RemoveCircleOutline: 0,\n  RemoveDone: 15,\n  RemoveFromQueue: 2,\n  RemoveModerator: 2,\n  RemoveRedEye: 15,\n  RemoveShoppingCart: 0,\n  Reorder: 15,\n  Repeat: 15,\n  RepeatOn: 15,\n  RepeatOne: 15,\n  RepeatOneOn: 15,\n  Replay: 15,\n  Replay10: 15,\n  Replay30: 15,\n  Replay5: 15,\n  ReplayCircleFilled: 0,\n  Reply: 15,\n  ReplyAll: 15,\n  Report: 15,\n  ReportGmailerrorred: 0,\n  ReportOff: 15,\n  ReportProblem: 7,\n  RequestPage: 15,\n  RequestQuote: 15,\n  ResetTv: 15,\n  RestartAlt: 15,\n  Restaurant: 15,\n  RestaurantMenu: 2,\n  Restore: 15,\n  RestoreFromTrash: 0,\n  RestorePage: 15,\n  Reviews: 15,\n  RiceBowl: 15,\n  RingVolume: 15,\n  Roofing: 15,\n  Room: 15,\n  RoomPreferences: 2,\n  RoomService: 15,\n  Rotate90DegreesCcw: 0,\n  RotateLeft: 15,\n  RotateRight: 15,\n  Router: 15,\n  Rowing: 15,\n  RssFeed: 15,\n  Rsvp: 15,\n  Rtt: 15,\n  Rule: 15,\n  RuleFolder: 15,\n  RunCircle: 15,\n  RunningWithErrors: 0,\n  RvHookup: 15,\n  SafetyDivider: 7,\n  Sailing: 15,\n  Sanitizer: 15,\n  Satellite: 15,\n  Save: 15,\n  SaveAlt: 15,\n  SavedSearch: 15,\n  Savings: 15,\n  Scanner: 15,\n  ScatterPlot: 15,\n  Schedule: 15,\n  ScheduleSend: 15,\n  Schema: 15,\n  School: 15,\n  Science: 15,\n  Score: 15,\n  ScreenLockLandscape: 0,\n  ScreenLockPortrait: 0,\n  ScreenLockRotation: 0,\n  ScreenRotation: 2,\n  ScreenSearchDesktop: 0,\n  ScreenShare: 15,\n  Screenshot: 15,\n  Sd: 15,\n  SdCard: 15,\n  SdCardAlert: 15,\n  SdStorage: 15,\n  Search: 15,\n  SearchOff: 15,\n  Security: 15,\n  SecurityUpdate: 2,\n  SecurityUpdateGood: 0,\n  Segment: 15,\n  SelectAll: 15,\n  SelfImprovement: 2,\n  Sell: 15,\n  Send: 15,\n  SendAndArchive: 2,\n  SendToMobile: 15,\n  SensorDoor: 15,\n  SensorWindow: 15,\n  Sensors: 15,\n  SensorsOff: 15,\n  SentimentNeutral: 0,\n  SentimentSatisfied: 0,\n  SetMeal: 15,\n  Settings: 15,\n  SettingsApplications: 0,\n  SettingsBluetooth: 0,\n  SettingsBrightness: 0,\n  SettingsCell: 15,\n  SettingsEthernet: 0,\n  SettingsInputAntenna: 0,\n  SettingsInputHdmi: 0,\n  SettingsInputSvideo: 0,\n  SettingsOverscan: 0,\n  SettingsPhone: 7,\n  SettingsPower: 7,\n  SettingsRemote: 2,\n  SettingsSuggest: 2,\n  SettingsVoice: 7,\n  SevenK: 15,\n  SevenKPlus: 15,\n  SevenMp: 15,\n  SeventeenMp: 15,\n  Share: 15,\n  ShareLocation: 7,\n  Shield: 15,\n  Shop: 15,\n  Shop2: 15,\n  ShopTwo: 15,\n  ShoppingBag: 15,\n  ShoppingBasket: 2,\n  ShoppingCart: 15,\n  ShortText: 15,\n  Shortcut: 15,\n  ShowChart: 15,\n  Shower: 15,\n  Shuffle: 15,\n  ShuffleOn: 15,\n  ShutterSpeed: 15,\n  Sick: 15,\n  SignalCellular0Bar: 0,\n  SignalCellular1Bar: 0,\n  SignalCellular2Bar: 0,\n  SignalCellular3Bar: 0,\n  SignalCellular4Bar: 0,\n  SignalCellularAlt: 0,\n  SignalCellularNoSim: 0,\n  SignalCellularNodata: 0,\n  SignalCellularNull: 0,\n  SignalCellularOff: 0,\n  SignalWifi0Bar: 2,\n  SignalWifi1Bar: 2,\n  SignalWifi1BarLock: 0,\n  SignalWifi2Bar: 2,\n  SignalWifi2BarLock: 0,\n  SignalWifi3Bar: 2,\n  SignalWifi3BarLock: 0,\n  SignalWifi4Bar: 2,\n  SignalWifi4BarLock: 0,\n  SignalWifiBad: 7,\n  SignalWifiOff: 7,\n  SimCard: 15,\n  SimCardAlert: 15,\n  SimCardDownload: 2,\n  SingleBed: 15,\n  Sip: 15,\n  SixK: 15,\n  SixKPlus: 15,\n  SixMp: 15,\n  SixteenMp: 15,\n  SixtyFps: 15,\n  SixtyFpsSelect: 2,\n  Skateboarding: 7,\n  SkipNext: 15,\n  SkipPrevious: 15,\n  Sledding: 15,\n  Slideshow: 15,\n  SlowMotionVideo: 2,\n  SmartButton: 15,\n  SmartDisplay: 15,\n  SmartScreen: 15,\n  SmartToy: 15,\n  Smartphone: 15,\n  SmokeFree: 15,\n  SmokingRooms: 15,\n  Sms: 15,\n  SmsFailed: 15,\n  SnippetFolder: 7,\n  Snooze: 15,\n  Snowboarding: 15,\n  Snowmobile: 15,\n  Snowshoeing: 15,\n  Soap: 15,\n  SocialDistance: 2,\n  Sort: 15,\n  SortByAlpha: 15,\n  Source: 15,\n  South: 15,\n  SouthEast: 15,\n  SouthWest: 15,\n  Spa: 15,\n  SpaceBar: 15,\n  Speaker: 15,\n  SpeakerGroup: 15,\n  SpeakerNotes: 15,\n  SpeakerNotesOff: 2,\n  SpeakerPhone: 15,\n  Speed: 15,\n  Spellcheck: 15,\n  Splitscreen: 15,\n  Sports: 15,\n  SportsBar: 15,\n  SportsBaseball: 2,\n  SportsBasketball: 0,\n  SportsCricket: 7,\n  SportsEsports: 7,\n  SportsFootball: 2,\n  SportsGolf: 15,\n  SportsHandball: 2,\n  SportsHockey: 15,\n  SportsKabaddi: 7,\n  SportsMma: 15,\n  SportsMotorsports: 0,\n  SportsRugby: 15,\n  SportsScore: 15,\n  SportsSoccer: 15,\n  SportsTennis: 15,\n  SportsVolleyball: 0,\n  SquareFoot: 15,\n  StackedBarChart: 2,\n  StackedLineChart: 0,\n  Stairs: 15,\n  Star: 15,\n  StarBorder: 15,\n  StarBorderPurple500: 0,\n  StarHalf: 15,\n  StarOutline: 15,\n  StarPurple500: 7,\n  StarRate: 15,\n  Stars: 15,\n  StayCurrentLandscape: 0,\n  StayCurrentPortrait: 0,\n  StayPrimaryLandscape: 0,\n  StayPrimaryPortrait: 0,\n  StickyNote2: 15,\n  Stop: 15,\n  StopCircle: 15,\n  StopScreenShare: 2,\n  Storage: 15,\n  Store: 15,\n  StoreMallDirectory: 0,\n  Storefront: 15,\n  Storm: 15,\n  Straighten: 15,\n  Stream: 15,\n  Streetview: 15,\n  StrikethroughS: 2,\n  Stroller: 15,\n  Style: 15,\n  Subject: 15,\n  Subscript: 15,\n  Subscriptions: 7,\n  Subtitles: 15,\n  SubtitlesOff: 15,\n  Subway: 15,\n  Summarize: 15,\n  Superscript: 15,\n  SupervisedUserCircle: 0,\n  SupervisorAccount: 0,\n  Support: 15,\n  SupportAgent: 15,\n  Surfing: 15,\n  SurroundSound: 7,\n  SwapCalls: 15,\n  SwapHoriz: 15,\n  SwapHorizontalCircle: 0,\n  SwapVert: 15,\n  SwapVerticalCircle: 0,\n  Swipe: 15,\n  SwitchAccount: 7,\n  SwitchCamera: 15,\n  SwitchLeft: 15,\n  SwitchRight: 15,\n  SwitchVideo: 15,\n  Sync: 15,\n  SyncAlt: 15,\n  SyncDisabled: 15,\n  SyncProblem: 15,\n  SystemSecurityUpdate: 0,\n  SystemUpdate: 15,\n  SystemUpdateAlt: 2,\n  Tab: 15,\n  TabUnselected: 7,\n  TableChart: 15,\n  TableRows: 15,\n  TableView: 15,\n  Tablet: 15,\n  TabletAndroid: 7,\n  TabletMac: 15,\n  Tag: 15,\n  TagFaces: 15,\n  TakeoutDining: 7,\n  TapAndPlay: 15,\n  Tapas: 15,\n  Task: 15,\n  TaskAlt: 15,\n  TaxiAlert: 15,\n  Telegram: 0,\n  TenMp: 15,\n  Terrain: 15,\n  TextFields: 15,\n  TextFormat: 15,\n  TextRotateUp: 15,\n  TextRotateVertical: 0,\n  TextRotationAngleup: 0,\n  TextRotationDown: 0,\n  TextRotationNone: 0,\n  TextSnippet: 15,\n  Textsms: 15,\n  Texture: 15,\n  TheaterComedy: 7,\n  Theaters: 15,\n  Thermostat: 15,\n  ThermostatAuto: 2,\n  ThirteenMp: 15,\n  ThirtyFps: 15,\n  ThirtyFpsSelect: 2,\n  ThreeDRotation: 2,\n  ThreeGMobiledata: 0,\n  ThreeK: 15,\n  ThreeKPlus: 15,\n  ThreeMp: 15,\n  ThreeP: 15,\n  ThreeSixty: 15,\n  ThumbDown: 15,\n  ThumbDownAlt: 15,\n  ThumbDownOffAlt: 2,\n  ThumbUp: 15,\n  ThumbUpAlt: 15,\n  ThumbUpOffAlt: 7,\n  ThumbsUpDown: 15,\n  TimeToLeave: 15,\n  Timelapse: 15,\n  Timeline: 15,\n  Timer: 15,\n  Timer10: 15,\n  Timer10Select: 7,\n  Timer3: 15,\n  Timer3Select: 15,\n  TimerOff: 15,\n  TimesOneMobiledata: 0,\n  Title: 15,\n  Toc: 15,\n  Today: 15,\n  ToggleOff: 15,\n  ToggleOn: 15,\n  Toll: 15,\n  Tonality: 15,\n  Topic: 15,\n  TouchApp: 15,\n  Tour: 15,\n  Toys: 15,\n  TrackChanges: 15,\n  Traffic: 15,\n  Train: 15,\n  Tram: 15,\n  Transform: 15,\n  Transgender: 15,\n  TransitEnterexit: 0,\n  Translate: 15,\n  TravelExplore: 7,\n  TrendingDown: 15,\n  TrendingFlat: 15,\n  TrendingUp: 15,\n  TripOrigin: 15,\n  Try: 15,\n  Tty: 15,\n  Tune: 15,\n  Tungsten: 15,\n  TurnedIn: 15,\n  TurnedInNot: 15,\n  Tv: 15,\n  TvOff: 15,\n  TwelveMp: 15,\n  TwentyFourMp: 15,\n  TwentyOneMp: 15,\n  TwentyThreeMp: 7,\n  TwentyTwoMp: 15,\n  TwentyZeroMp: 15,\n  Twitter: 0,\n  TwoK: 15,\n  TwoKPlus: 15,\n  TwoMp: 15,\n  TwoWheeler: 15,\n  Umbrella: 15,\n  Unarchive: 15,\n  Undo: 15,\n  UnfoldLess: 15,\n  UnfoldMore: 15,\n  Unpublished: 15,\n  Unsubscribe: 15,\n  Upcoming: 15,\n  Update: 15,\n  UpdateDisabled: 2,\n  Upgrade: 15,\n  Upload: 15,\n  UploadFile: 15,\n  Usb: 15,\n  UsbOff: 15,\n  Verified: 15,\n  VerifiedUser: 15,\n  VerticalAlignBottom: 0,\n  VerticalAlignCenter: 0,\n  VerticalAlignTop: 0,\n  VerticalSplit: 7,\n  Vibration: 15,\n  VideoCall: 15,\n  VideoCameraBack: 2,\n  VideoCameraFront: 0,\n  VideoLabel: 15,\n  VideoLibrary: 15,\n  VideoSettings: 7,\n  VideoStable: 15,\n  Videocam: 15,\n  VideocamOff: 15,\n  VideogameAsset: 2,\n  VideogameAssetOff: 0,\n  ViewAgenda: 15,\n  ViewArray: 15,\n  ViewCarousel: 15,\n  ViewColumn: 15,\n  ViewComfy: 15,\n  ViewCompact: 15,\n  ViewDay: 15,\n  ViewHeadline: 15,\n  ViewInAr: 15,\n  ViewList: 15,\n  ViewModule: 15,\n  ViewQuilt: 15,\n  ViewSidebar: 15,\n  ViewStream: 15,\n  ViewWeek: 15,\n  Vignette: 15,\n  Villa: 15,\n  Visibility: 15,\n  VisibilityOff: 7,\n  VoiceChat: 15,\n  VoiceOverOff: 15,\n  Voicemail: 15,\n  VolumeDown: 15,\n  VolumeMute: 15,\n  VolumeOff: 15,\n  VolumeUp: 15,\n  VolunteerActivism: 0,\n  VpnKey: 15,\n  VpnLock: 15,\n  Vrpano: 15,\n  Wallpaper: 15,\n  Warning: 15,\n  WarningAmber: 15,\n  Wash: 15,\n  Watch: 15,\n  WatchLater: 15,\n  Water: 15,\n  WaterDamage: 15,\n  WaterfallChart: 2,\n  Waves: 15,\n  WbAuto: 15,\n  WbCloudy: 15,\n  WbIncandescent: 2,\n  WbIridescent: 15,\n  WbShade: 15,\n  WbSunny: 15,\n  WbTwilight: 15,\n  Wc: 15,\n  Web: 15,\n  WebAsset: 15,\n  WebAssetOff: 15,\n  Weekend: 15,\n  West: 15,\n  WhatsApp: 0,\n  Whatshot: 15,\n  WheelchairPickup: 0,\n  WhereToVote: 15,\n  Widgets: 15,\n  Wifi: 15,\n  WifiCalling: 15,\n  WifiCalling3: 15,\n  WifiLock: 15,\n  WifiOff: 15,\n  WifiProtectedSetup: 0,\n  WifiTethering: 7,\n  WifiTetheringOff: 0,\n  Window: 15,\n  WineBar: 15,\n  Work: 15,\n  WorkOff: 15,\n  WorkOutline: 15,\n  Workspaces: 15,\n  WrapText: 15,\n  WrongLocation: 7,\n  Wysiwyg: 15,\n  Yard: 15,\n  YouTube: 0,\n  YoutubeSearchedFor: 0,\n  ZoomIn: 15,\n  ZoomOut: 15,\n  ZoomOutMap: 15\n};\nconst iconKeys = Object.keys(icons);\nconst weightOptions = [\"Filled\", \"TwoTone\", \"Sharp\", \"Rounded\", \"Outlined\"];\nconst styleKeyOptions = {\n  15: [...weightOptions],\n  7: [\"Filled\", \"TwoTone\", \"Sharp\", \"Rounded\"],\n  2: [\"Filled\", \"Sharp\"]\n};\nconst styleOptionPropKeys = Object.keys(styleKeyOptions).map(optionKey => `iconStyle${optionKey}`);\nconst lowercaseIconKeyPairs = iconKeys.reduce((res, key) => {\n  res[key.toLowerCase()] = key;\n  return res;\n}, {}); /**\n        * MATERIAL\n        *\n        * @framerIntrinsicWidth 24\n        * @framerIntrinsicHeight 24\n        *\n        * @framerSupportedLayoutWidth fixed\n        * @framerSupportedLayoutHeight fixed\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    mirrored,\n    style\n  } = props;\n  const isMounted = useRef(false);\n  const iconKey = useIconSelection(iconKeys, selectByList, iconSearch, iconSelection, lowercaseIconKeyPairs); // Get props to use for deps array\n  const styleOptionProps = styleOptionPropKeys.map(prop => props[prop]); // Get style of icon\n  const iconStyle = useMemo(() => {\n    const iconStyleKey = icons[iconKey];\n    if (!iconStyleKey) return;\n    const activeStyle = props[`iconStyle${iconStyleKey}`];\n    if (activeStyle === \"Filled\") return;\n    return activeStyle;\n  }, [...styleOptionProps]); // Selected Icon Module\n  const [SelectedIcon, setSelectedIcon] = useState(iconKey === \"Home\" ? HomeFactory(React) : null); // Import the selected module or reset so null state\n  async function importModule() {\n    // If bad search or doesn't exist, show null state\n    if (typeof icons[iconKey] !== \"number\") {\n      setSelectedIcon(null);\n      return;\n    } // Get the selected module\n    try {\n      const style = iconStyle ? iconStyle : \"\";\n      const iconModuleUrl = `${moduleBaseUrl}${iconKey}${style}.js@0.0.32`; // console.log(iconModuleUrl)\n      const module = await import( /* webpackIgnore: true */iconModuleUrl);\n      if (isMounted.current) setSelectedIcon(module.default(React));\n    } catch {\n      if (isMounted.current) setSelectedIcon(null);\n    }\n  } // Import module when new style or icon is selected\n  useEffect(() => {\n    isMounted.current = true;\n    importModule();\n    return () => {\n      isMounted.current = false;\n    };\n  }, [iconKey, ...styleOptionProps]);\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      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        ...style\n      },\n      focusable: \"false\",\n      viewBox: \"0 0 24 24\",\n      color: color,\n      children: SelectedIcon\n    }) : emptyState\n  });\n}\nIcon.displayName = \"Material\";\nIcon.defaultProps = {\n  width: 24,\n  height: 24,\n  iconSelection: \"Home\",\n  iconSearch: \"Home\",\n  color: \"#66F\",\n  selectByList: true,\n  weight: \"Filled\",\n  mirrored: false\n};\nfunction hideStyleOptions(props, styleOptions) {\n  const {\n    selectByList,\n    iconSearch,\n    iconSelection\n  } = props;\n  const styleOptionsNumber = parseInt(styleOptions);\n  const name = getIconSelection(iconKeys, selectByList, iconSearch, iconSelection, lowercaseIconKeyPairs);\n  const icon = icons[name];\n  if (!icon || styleOptionsNumber === 0) return true;\n  if (icon === styleOptionsNumber) return false;else return true;\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    description: \"Find every icon name on the [Material site](https://fonts.google.com/icons)\"\n  },\n  iconSearch: {\n    type: ControlType.String,\n    title: \"Name\",\n    placeholder: \"Menu, Wifi, Box\u2026\",\n    hidden: ({\n      selectByList\n    }) => selectByList\n  },\n  mirrored: {\n    type: ControlType.Boolean,\n    enabledTitle: \"Yes\",\n    disabledTitle: \"No\",\n    defaultValue: Icon.defaultProps.mirrored\n  },\n  color: {\n    type: ControlType.Color,\n    title: \"Color\",\n    defaultValue: Icon.defaultProps.color\n  },\n  ...Object.keys(styleKeyOptions).reduce((result, optionKey) => {\n    result[`iconStyle${optionKey}`] = {\n      type: ControlType.Enum,\n      title: \"Style\",\n      defaultValue: \"Filled\",\n      options: styleKeyOptions[optionKey],\n      hidden: props => hideStyleOptions(props, optionKey)\n    };\n    return result;\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        \"framerSupportedLayoutHeight\": \"fixed\",\n        \"framerContractVersion\": \"1\",\n        \"framerSupportedLayoutWidth\": \"fixed\",\n        \"framerIntrinsicHeight\": \"24\",\n        \"framerIntrinsicWidth\": \"24\"\n      }\n    },\n    \"__FramerMetadata__\": {\n      \"type\": \"variable\"\n    }\n  }\n};\n//# sourceMappingURL=./Material.map", "import * as React from \"react\";\nimport { forwardRef } from \"react\";\nconst Afro = forwardRef((props, ref) => {\n  const { skin, hair } = props;\n  return /* @__PURE__ */ React.createElement(\"g\", {\n    id: \"Head/Front/Afro\",\n    stroke: \"none\",\n    strokeWidth: \"1\",\n    fill: \"none\",\n    fillRule: \"evenodd\"\n  }, /* @__PURE__ */ React.createElement(\"path\", {\n    d: \"M61,77.7068588 C72.4289379,77.7068588 76.5854974,64.0240838 83.0786187,56.5153483 C87.7243138,51.143002 95.6530795,52.7449442 98,45.2237762 C103.901542,26.3111237 88.1061086,13 67.5,13 C46.8938914,13 33,24.6742524 30,42.2237762 C27,59.7733 40.3938914,77.7068588 61,77.7068588 Z\",\n    id: \"Hair-Back\",\n    fill: hair\n  }), /* @__PURE__ */ React.createElement(\"g\", {\n    id: \"Head\",\n    transform: \"translate(54.000000, 31.000000)\",\n    fill: skin\n  }, /* @__PURE__ */ React.createElement(\"path\", {\n    d: \"M8.26227388,34.4901268 C3.65436435,29.0813759 0.535634794,22.4528771 1.05677633,15.0254539 C2.55833022,-6.37502057 32.3485306,-1.66718886 38.1433414,9.13393292 C43.9381521,19.9350547 43.249578,47.3329958 35.7603014,49.2634576 C32.7735882,50.033323 26.4110012,48.1474609 19.935372,44.244306 L24,73 L0,73 L8.26227388,34.4901268 Z\"\n  })), /* @__PURE__ */ React.createElement(\"path\", {\n    d: \"M72.379769,51.7233675 C71.5077737,51.2620302 70.5086201,51 69.4466684,51 C66.0464589,51 63.2900445,53.6862915 63.2900445,57 C63.2900445,58.3524891 63.749225,59.6004592 64.5239446,60.6039231 C63.0651901,63.0083834 62.0695832,65.5346814 61.7432388,68.1317726 C56.6870351,68.1317726 38.2335803,49 56.6167901,31 C75,13 101.566014,38.6959598 93.5831606,40.1945268 C88.9934286,41.0561261 79.7498479,45.4379083 72.3797716,51.7233656 Z\",\n    id: \"Hair\",\n    fill: hair\n  }));\n});\nconst Airy = forwardRef((props, ref) => {\n  const { skin, hair } = props;\n  return /* @__PURE__ */ React.createElement(\"g\", {\n    id: \"Head/Front/Airy\",\n    stroke: \"none\",\n    strokeWidth: \"1\",\n    fill: \"none\",\n    fillRule: \"evenodd\"\n  }, /* @__PURE__ */ React.createElement(\"g\", {\n    id: \"Head\",\n    transform: \"translate(54.000000, 31.000000)\",\n    fill: skin\n  }, /* @__PURE__ */ React.createElement(\"path\", {\n    d: \"M8.26227388,34.4901268 C3.65436435,29.0813759 0.535634794,22.4528771 1.05677633,15.0254539 C2.55833022,-6.37502057 32.3485306,-1.66718886 38.1433414,9.13393292 C43.9381521,19.9350547 43.249578,47.3329958 35.7603014,49.2634576 C32.7735882,50.033323 26.4110012,48.1474609 19.935372,44.244306 L24,73 L0,73 L8.26227388,34.4901268 Z\"\n  })), /* @__PURE__ */ React.createElement(\"path\", {\n    d: \"M78.46395,27.6852568 C75.3008195,27.1665378 66.7839511,26.8099042 65.2132884,26.8101344 C64.2095609,26.8101344 63.1218259,27.0394482 62.5273474,26.1178184 C62.0405177,25.3631089 62.2188613,24.0866873 62.0735698,23.2108742 C61.9048664,22.1934668 61.6652388,21.1891827 61.4228569,20.1874312 C60.7331241,17.3368945 59.6901472,14.6249591 58.2308058,12.0787928 C55.4925323,7.30188179 51.4810649,3.56010629 46.4167508,1.38277606 C40.824292,-1.02133542 34.4959652,-1.57182675 28.4804855,-1.08418951 C22.0431327,-0.562477519 16.2158664,1.56258942 10.137955,3.56240864 C4.34603603,5.46806184 -1.7203989,6.21816672 -7.77811175,5.28755777 C-13.8815008,4.35004179 -18.4931849,1.0420286 -23.6412768,-2.09768297 C-28.9114778,-5.31199061 -34.9343023,-7.4142643 -41.1646205,-6.93100152 C-46.9804104,-6.47974137 -52.3405866,-4.0783927 -57.1496651,-0.870531642 C-61.6491098,2.13080883 -65.3617312,5.74181098 -67.4577843,10.8240133 C-69.7126711,16.2909379 -69.7106053,22.291777 -66.0025745,27.1232537 C-60.627938,34.1265349 -50.6501101,35.9375616 -42.3489869,35.7575181 C-37.5474828,35.6536822 -32.8318224,34.7771784 -28.298637,33.1828026 C-22.2530892,31.0563543 -17.0287938,27.4522592 -11.3729852,24.5280473 C-8.71871903,23.1558481 -5.97516638,22.0288489 -3.09940537,21.2170411 C-0.308799399,20.4289475 2.43980288,20.0674789 4.96645123,21.7532579 C7.63930914,23.5366564 10.0344377,25.2885128 13.0922147,26.4049212 C16.0255874,27.4759733 19.132713,28.0750442 22.2579713,28.0508696 C28.338637,28.0039017 34.3327705,26.1092997 40.2385356,24.8402457 C45.0544999,23.8055706 50.2074119,22.7743491 55.1172534,23.7689633 C57.1660236,24.1840766 60.1586146,25.0410104 60.8986141,27.1702216 C48.4441749,29.4274433 43.5527072,44.8301494 47.0638027,56.1372093 C48.958789,62.2400423 60.3498117,69.3741897 64.7787912,66.1658382 C67.5846772,64.1332552 65.881216,61.4648419 64.7787912,59.7033156 C62.6675892,56.3299158 61.9452634,51.9966672 65.8518364,49.6480423 C69.2215424,47.6224367 72.7645562,52.4327123 72.8315785,52.4274169 C73.7577255,52.3544325 81.7604403,47.8285457 87.2741651,41.224129 C92.7134751,41.5465656 93.5386971,37.9600245 92.2398964,35.026908 C90.9410957,32.0937915 82.8343998,28.4024381 78.46395,27.6852568 Z\",\n    id: \"Hair\",\n    fill: hair\n  }));\n});\nconst Caesar = forwardRef((props, ref) => {\n  const { skin, hair } = props;\n  return /* @__PURE__ */ React.createElement(\"g\", {\n    id: \"Head/Front/Caesar\",\n    stroke: \"none\",\n    strokeWidth: \"1\",\n    fill: \"none\",\n    fillRule: \"evenodd\"\n  }, /* @__PURE__ */ React.createElement(\"g\", {\n    id: \"Head\",\n    transform: \"translate(54.000000, 31.000000)\",\n    fill: skin\n  }, /* @__PURE__ */ React.createElement(\"path\", {\n    d: \"M8.26227388,34.4901268 C3.65436435,29.0813759 0.535634794,22.4528771 1.05677633,15.0254539 C2.55833022,-6.37502057 32.3485306,-1.66718886 38.1433414,9.13393292 C43.9381521,19.9350547 43.249578,47.3329958 35.7603014,49.2634576 C32.7735882,50.033323 26.4110012,48.1474609 19.935372,44.244306 L24,73 L0,73 L8.26227388,34.4901268 Z\"\n  })), /* @__PURE__ */ React.createElement(\"path\", {\n    d: \"M69.729818,53.8670262 C68.9449555,53.3276287 68.0072604,53 67,53 C64.2385763,53 62,55.4624339 62,58 C62,60.6398741 63.246606,62.6810346 65.026826,63.5469713 C64.0760216,65.4058954 63.1199761,66.7549721 62,67 C57.6781395,66.5628085 52,55.8205201 52,47 C52,37.3455086 59.6819829,29 74,29 C86.8690713,29 91.7485692,34.3062174 92,39 C86.4853531,40.5156046 76.8492499,41.0992165 63,41 L63,42 L75,43 L77,49 C73.8180725,48.7624609 71.5442799,50.9449742 69.729818,53.8670262 Z\",\n    id: \"Combined-Shape\",\n    fill: hair\n  }));\n});\nconst Chongo = forwardRef((props, ref) => {\n  const { skin, hair } = props;\n  return /* @__PURE__ */ React.createElement(\"g\", {\n    id: \"Head/Front/Chongo\",\n    stroke: \"none\",\n    strokeWidth: \"1\",\n    fill: \"none\",\n    fillRule: \"evenodd\"\n  }, /* @__PURE__ */ React.createElement(\"g\", {\n    id: \"Head\",\n    transform: \"translate(54.000000, 31.000000)\",\n    fill: skin\n  }, /* @__PURE__ */ React.createElement(\"path\", {\n    d: \"M8.26227388,34.4901268 C3.65436435,29.0813759 0.535634794,22.4528771 1.05677633,15.0254539 C2.55833022,-6.37502057 32.3485306,-1.66718886 38.1433414,9.13393292 C43.9381521,19.9350547 43.249578,47.3329958 35.7603014,49.2634576 C32.7735882,50.033323 26.4110012,48.1474609 19.935372,44.244306 L24,73 L0,73 L8.26227388,34.4901268 Z\"\n  })), /* @__PURE__ */ React.createElement(\"path\", {\n    d: \"M82.6634951,28.3699763 C79.3840534,27.3699763 74.6234565,27.0308443 72.6208149,27.2602642 C73.7600087,24.5308439 74.2120576,21.4899413 73.8435286,18.5290858 C73.4853344,15.6520661 72.1997702,13.2023672 71.0108165,10.6353788 C70.4627695,9.45216518 69.8416903,8.27540043 68.9156982,7.37037661 C67.972405,6.44834378 66.7783223,5.83972796 65.5262119,5.54936581 C64.2448581,5.2521517 62.9050174,5.27689939 61.6216732,5.54662502 C61.0539519,5.66592985 60.5445644,5.92549845 59.9877902,6.0697928 C59.4176191,6.21763405 59.141031,5.86076752 58.7271824,5.50212755 C57.7298424,4.63797369 56.2677456,4.21137833 55.0059895,4.0587004 C53.5903607,3.88748186 52.1214506,4.10102137 50.7713517,4.56639079 C49.457233,5.01942668 48.1947879,5.75508602 47.2446815,6.82681415 C46.8216464,7.30387223 46.4376536,7.8468704 46.188089,8.44637714 C46.0857368,8.69240304 46.0688185,8.83814839 45.8233112,8.9282719 C45.5962532,9.01170466 45.3306889,9.014123 45.0963584,9.0935252 C42.8305256,9.86094542 40.8932607,11.6116631 39.8384289,13.8595111 C39.2230147,15.1708968 38.9314987,17.4797836 39.0113441,20.0676663 C39.0911894,22.655549 41.4279109,29.4080735 43.613439,31.8710732 C45.5642539,34.0695065 48.4317213,35.5202692 51.1990566,36.1553256 C49.36223,38.2548487 48.1395162,40.8784262 47.2353419,43.5466625 C46.2532361,46.4450442 45.6454006,49.4566043 45.4209456,52.525076 C45.2077438,55.4404668 45.187993,58.5235291 45.8714634,61.3766879 C46.5108389,64.0448435 47.8781623,66.233684 50.1607604,67.6222954 C51.2063292,68.2583997 52.331284,68.7362639 53.4627459,69.1730163 C54.5778253,69.6034004 55.6962731,70.021854 56.8643276,70.2633656 C59.0749653,70.7202709 61.6221325,70.641836 63.3249903,68.8822511 C63.9387204,68.2479202 64.6136933,67.450835 65.0614552,66.675918 C65.2224473,66.3972445 65.3195173,66.2149822 65.1239229,65.9425963 C64.8895924,65.6163621 64.5105756,65.3663863 64.2095669,65.1111707 C62.493006,63.6560549 61.4304424,61.7134822 61.1625814,59.4049338 C60.8908162,57.0626093 61.5200101,54.03928 63.7973259,53.0170472 C66.6084499,51.7551569 69.7042766,53.2035819 72.2028323,54.5537417 C73.264707,50.805958 75.4450295,47.4314855 78.8633764,45.7123675 C82.6451998,43.8105035 86.9847925,43.5879355 90.871188,41.9561196 C91.8839153,41.5308947 92.9153983,41.0481938 93.6610301,40.1817828 C93.9726032,39.8196765 94.3381465,39.3499541 94.4625461,38.871042 C94.625988,38.2419509 94.220254,37.7145107 93.9068437,37.2240711 C92.2450186,34.623629 85.9429367,29.3699763 82.6634951,28.3699763 Z\",\n    id: \"Hair\",\n    fill: hair\n  }));\n});\nconst Curly = forwardRef((props, ref) => {\n  const { skin, hair } = props;\n  return /* @__PURE__ */ React.createElement(\"g\", {\n    id: \"Head/Front/Curly\",\n    stroke: \"none\",\n    strokeWidth: \"1\",\n    fill: \"none\",\n    fillRule: \"evenodd\"\n  }, /* @__PURE__ */ React.createElement(\"g\", {\n    id: \"Head\",\n    transform: \"translate(54.000000, 31.000000)\",\n    fill: skin\n  }, /* @__PURE__ */ React.createElement(\"path\", {\n    d: \"M8.26227388,34.4901268 C3.65436435,29.0813759 0.535634794,22.4528771 1.05677633,15.0254539 C2.55833022,-6.37502057 32.3485306,-1.66718886 38.1433414,9.13393292 C43.9381521,19.9350547 43.249578,47.3329958 35.7603014,49.2634576 C32.7735882,50.033323 26.4110012,48.1474609 19.935372,44.244306 L24,73 L0,73 L8.26227388,34.4901268 Z\"\n  })), /* @__PURE__ */ React.createElement(\"path\", {\n    d: \"M102.7757,25.1604378 C102.27871,23.413499 100.941932,21.9177553 99.1403997,21.4740102 C98.7035309,21.3663739 98.2523568,21.3228991 97.8028308,21.3410245 C97.6415842,21.3474604 97.5963613,21.3939561 97.5210118,21.2811974 C97.4651095,21.197597 97.463857,20.9933574 97.44085,20.8951122 C97.3692581,20.5896064 97.2797352,20.2879096 97.169249,19.9940277 C96.7923038,18.9916772 96.1588538,18.1045809 95.3952068,17.3573001 C93.9668625,15.9592762 92.0369134,14.9944243 90.0318126,14.8198684 C88.9343996,14.7243814 87.8449632,14.9026807 86.8074738,15.2596732 C86.2703367,15.444474 85.7494825,15.6745884 85.2422083,15.9290015 C85.0894658,16.0055749 84.5939258,16.3806273 84.4406558,16.3563287 C84.2713667,16.3295345 83.9311403,15.9088402 83.793494,15.8032397 C82.0920984,14.4978789 79.9910802,13.9846529 77.8718674,14.0003485 C75.4798671,14.0180142 73.1765325,14.1375371 71.1815838,15.5957165 C70.7592838,15.9044402 70.3570902,16.2424535 69.974146,16.5983297 C69.7724889,16.7856917 69.5771603,16.9800806 69.3908631,17.1825471 C69.2784651,17.3046969 69.1690337,17.4296049 69.0636894,17.5578621 C68.8849074,17.7755645 68.9135837,17.8470813 68.6633416,17.6951821 C67.7032454,17.1118841 66.5906702,16.8390829 65.4700524,16.976797 C64.80463,17.0586242 64.1572045,17.2583982 63.5424765,17.5213485 C63.3331724,17.6108594 62.8487074,17.9679176 62.6256255,17.9713982 C62.4043234,17.9748132 61.9266485,17.6438267 61.6986882,17.5597009 C60.4674524,17.1051856 59.1403652,16.9931493 57.8462393,17.2031681 C56.5113072,17.4198854 55.1999755,17.9524847 54.068942,18.6884699 C53.524949,19.0425073 53.0503065,19.4347656 52.6690763,19.9611918 C52.5044676,20.1884823 52.3556804,20.4289072 52.1691195,20.6396484 C52.0598858,20.7630459 51.8435939,20.8896614 51.7849887,21.0458292 C51.8200595,20.9523124 50.3250675,20.3759756 50.1839932,20.3391337 C49.43241,20.1428403 48.6671149,20.1826375 47.9311554,20.4248355 C46.5472429,20.8802703 45.3570768,21.9016 44.3789178,22.9487388 C43.8765219,23.4865919 43.4368843,24.0811198 43.0636966,24.7145254 C42.8848487,25.0179297 42.7212948,25.3300027 42.5716506,25.6487085 C42.4991357,25.8031032 42.4510782,25.9962443 42.3555564,26.1353375 C42.232413,26.3145561 42.1496802,26.3179711 41.9266642,26.3961207 C40.7940485,26.7929104 39.7615692,27.4645372 38.9753108,28.3720574 C38.1800209,29.2902166 37.663979,30.42089 37.4476212,31.6115877 C37.4348981,31.6817253 37.427317,31.9723892 37.3862473,32.0103476 C37.3299494,32.0626224 37.1021869,32.0395059 37.0160261,32.0496194 C36.7176606,32.0846225 36.4214046,32.1367003 36.1291039,32.2059185 C35.5902528,32.3334534 35.0657729,32.5211438 34.5696396,32.7666254 C32.6356033,33.723531 31.2525478,35.5174909 30.5756549,37.5361144 C29.8654051,39.6545592 29.8779963,42.0815964 30.7268813,44.1605068 C30.8640002,44.4962873 31.0271586,44.8222171 31.2187955,45.1305467 C31.3364672,45.3198132 31.3744386,45.3202729 31.2980344,45.5188648 C31.2128624,45.7397851 31.0572852,45.9544667 30.9561599,46.1703303 C30.6262175,46.874793 30.3955544,47.6219424 30.2498656,48.3850501 C30.0108303,49.6368226 29.8923675,50.9522969 30.1281725,52.2135918 C30.2376699,52.799254 30.4284498,53.3717818 30.7194979,53.8934139 C30.8678896,54.1593852 31.0415297,54.411631 31.2375834,54.6449634 C31.3393678,54.7661281 31.4474808,54.881842 31.5605381,54.9926962 C31.6252081,55.0560039 31.7099845,55.111431 31.7649639,55.1821597 C31.8991823,55.3546142 31.9273971,55.2128285 31.8581785,55.4660594 C31.7614041,55.8200967 31.5420138,56.1694057 31.4076636,56.5139206 C31.2692262,56.868943 31.1441052,57.2288251 31.0296636,57.5922535 C30.7978799,58.3281731 30.6018921,59.077424 30.479342,59.8395467 C30.2439984,61.3027828 30.2853319,62.8618999 30.9774529,64.204825 C31.2733793,64.7792573 31.6979207,65.2831579 32.2128419,65.6751536 C32.4648638,65.8669157 32.7378492,66.0322119 33.0242168,66.1679557 C33.171356,66.2378307 33.3592353,66.2677771 33.4263445,66.4100881 C33.4985956,66.5631037 33.3913396,66.8669677 33.3668823,67.038043 C33.1540843,68.5263001 33.0473557,70.0888978 33.489762,71.5473398 C33.8972294,72.890659 34.7943696,74.0766939 35.9591555,74.8619331 C38.2187834,76.3851933 41.2646697,76.2992944 43.6389369,75.0798325 C44.257818,74.7619147 44.8368159,74.3672265 45.3533193,73.9016782 C46.6685404,75.6721932 49.3749915,75.6161751 51.2972276,75.1116834 C53.6920627,74.4832031 55.6137056,72.8179602 56.7208751,70.6300344 C58.2347869,72.4729856 61.411991,71.8750427 62.4618079,69.8757268 C62.718774,69.3864053 62.871187,68.8471075 62.9462069,68.3013738 C62.9856945,68.0143875 62.9605121,67.7249057 62.9901773,67.4402179 C63.0280168,67.0774462 63.2703482,66.7249193 63.4096426,66.3739686 C63.6809139,65.6909806 63.8493461,64.9854671 63.8565976,64.2487595 C63.8603552,63.8641191 63.8116384,63.4892637 63.7750514,63.1077099 C63.742156,62.7642457 63.8374141,62.4442264 63.8915365,62.105228 C63.277336,62.2063627 62.5290489,62.0407382 61.9503806,61.8626359 C61.3825236,61.6878829 60.8506603,61.2275884 60.4498511,60.8072225 C59.5192222,59.831075 58.950706,58.5514576 58.5618947,57.2778821 C57.7083952,54.4826224 58.0582462,51.1289544 60.8697779,49.5948583 C62.1795274,48.8802164 66.1033718,48.8825605 67.6633416,49.2357609 C69.3035816,49.6071356 71.1630595,53.2263842 71.25456,53.5665648 C71.3111875,53.7771089 71.282709,54.0376951 71.4761258,54.1779703 C71.9011945,54.4864314 72.6022151,53.9511395 72.9157428,53.6869414 C73.4567694,53.2309812 73.8426801,52.624304 74.1769075,52.0093522 C74.9051541,50.669645 75.4922605,49.2329403 75.9069794,47.7662893 C76.2267038,46.6355502 76.4311297,45.4695452 76.8490129,44.367636 C77.2648524,43.2711776 77.9203865,42.2911555 78.9396153,41.6700305 C80.048367,40.9943321 81.3192882,40.638456 82.5364825,40.2138213 C83.7429973,39.7929956 84.9286806,39.2786532 85.8639241,38.385712 C86.0695366,38.189353 86.269282,37.9807133 86.4348135,37.7495481 C86.5654721,37.5670459 86.6946144,37.2176712 86.8937005,37.1019573 C87.203207,36.9219506 87.6549084,37.39006 87.9225541,37.560019 C89.2429831,38.3986494 90.3446151,39.5682663 91.2331195,40.8459792 C92.1166797,42.1167309 92.841683,43.3394764 93.430833,44.7584496 C93.8678337,45.8108422 94.1405685,47.158627 94.9091597,48.0210964 C95.2522867,48.4061965 97.8028308,48.6391716 98.6289725,48.3029602 C99.4551141,47.9667489 100.380997,47.0937432 100.658267,46.5466304 C100.942129,45.9866459 101.009964,45.371497 100.888666,44.7584496 C100.817338,44.3977794 100.671649,44.0608825 100.591949,43.7066481 C100.52484,43.4090887 100.463927,43.1278158 100.319095,42.8552117 C100.044594,42.3386363 99.5756205,41.9673273 99.0100708,41.8120789 C99.5986275,41.2694318 100.086323,40.6202648 100.42378,39.8945901 C100.774422,39.1406764 101.071601,38.2238307 101.155916,37.3963645 C101.224476,36.7242781 101.11867,36.0279587 100.750756,35.4503742 C100.36478,34.844485 99.6810307,34.4492057 99.0894416,34.0712638 C99.9931082,33.3642399 100.766512,32.5043974 101.402335,31.5524173 C102.638845,29.7011258 103.403678,27.3675397 102.7757,25.1604378 Z\",\n    id: \"Hair\",\n    fill: hair\n  }));\n});\nconst Hijab = forwardRef((props, ref) => {\n  const { skin, hair } = props;\n  return /* @__PURE__ */ React.createElement(\"g\", {\n    id: \"Head/Front/Hijab-1\",\n    stroke: \"none\",\n    strokeWidth: \"1\",\n    fill: \"none\",\n    fillRule: \"evenodd\"\n  }, /* @__PURE__ */ React.createElement(\"g\", {\n    id: \"Head\",\n    transform: \"translate(54.000000, 31.000000)\",\n    fill: skin\n  }, /* @__PURE__ */ React.createElement(\"path\", {\n    d: \"M8.26227388,34.4901268 C3.65436435,29.0813759 0.535634794,22.4528771 1.05677633,15.0254539 C2.55833022,-6.37502057 32.3485306,-1.66718886 38.1433414,9.13393292 C43.9381521,19.9350547 43.249578,47.3329958 35.7603014,49.2634576 C32.7735882,50.033323 26.4110012,48.1474609 19.935372,44.244306 L24,73 L0,73 L8.26227388,34.4901268 Z\"\n  })), /* @__PURE__ */ React.createElement(\"g\", {\n    id: \"Hijab\",\n    transform: \"translate(36.000000, 28.000000)\"\n  }, /* @__PURE__ */ React.createElement(\"path\", {\n    d: \"M50.7350002,5.01147183 C50.1852708,4.68336774 49.0351409,3.99129844 48.4524743,3.74047035 C48.3145899,3.68011316 47.3491609,2.99135428 47.3231986,3.00008224 C46.5922497,3.24668063 44.475629,4.157139 44.2939574,4.94386372 C44.2657992,5.00348239 44.2381578,5.05940846 44.2112267,5.10828502 C43.9113039,5.65351385 43.6361163,6.21230459 43.373587,6.77787628 C42.7975078,8.01939475 42.3002198,9.31697358 41.8252774,10.6043474 C40.9001924,13.1115541 40.0965233,15.677171 39.3576307,18.2486288 C38.6053695,20.8663449 37.9669033,23.5146088 37.2521648,26.1431341 C36.2236827,29.9254283 34.9073547,33.6149377 33.8859767,37.3956877 C33.2337544,39.8097738 32.8709924,42.2521922 33.0422662,44.7368405 C33.0439454,44.7667169 33.0449141,44.7961906 33.0476266,44.826537 C33.0486599,44.8389576 33.0502099,44.8512438 33.0513078,44.8636644 C33.0804347,45.2456133 33.1219615,45.6285021 33.177309,46.0125322 C33.2257461,46.3409049 33.2743124,46.670486 33.3261079,47 C34.2590719,45.1396022 34.9713564,43.0896733 35.7272342,41.1440101 C35.8011816,40.9535392 35.8717061,40.7616583 35.940616,40.5691733 C36.1843517,40.1746025 36.4328666,39.7828514 36.6841585,39.3925774 C38.2688928,36.9315618 39.8598917,34.4796098 41.3795265,31.9740815 C44.1128024,27.4677025 46.8205682,22.8660544 50.061078,18.727928 C51.0179377,17.5059467 51.9970785,16.302697 52.9419258,15.0707121 C53.4795781,14.3696557 54.0032806,13.6568501 54.5099977,12.9313553 C54.872243,12.4125789 56.4471311,10.6043474 55.8768295,9.51791803 C55.585039,8.96205474 52.1610544,5.8627163 50.7350002,5.01147183 Z\",\n    id: \"Front\",\n    fill: \"#2C2C2C\"\n  }), /* @__PURE__ */ React.createElement(\"path\", {\n    d: \"M48.6260171,3.83116599 C49.1606177,4.01081921 48.9005286,2.8983607 48.3827244,2.5068843 C45.9838484,0.693257683 36.8126531,0.035129961 28.8316831,1.69188377 C23.4851811,2.80175357 17.2670643,5.56416284 12.9966544,9.11545816 C9.14699464,12.3169592 6.49948445,17.4491331 5.13642247,22.407675 C3.70525344,27.6142408 3.48849539,33.0422873 4.28584125,38.381368 C4.46101123,39.5541291 4.83740954,40.6717368 5.04712657,41.8196221 C5.28329677,43.1122936 5.40444175,44.3568809 5.8254551,45.6145396 C6.08327479,46.3844871 6.52139715,47.1392958 6.74137959,47.9136449 C6.99248728,48.7972339 6.8394274,49.6146653 6.65629515,50.5133931 C6.35787446,51.9781941 5.98785913,53.4399939 5.46202016,54.8389709 C4.67237336,56.9397371 3.71413697,58.9072548 3.11334736,61.0872499 C2.31396158,63.9879079 -1.02991389,73.427136 1.41378875,76 L47.9323913,76 C46.761016,72.8047679 43.2449088,69.0442856 42.533108,65.623838 C42.1138713,63.608903 41.9144197,59.2085647 41.8705285,59.0486397 C40.8222264,51.8223372 38.7753261,48.3714635 37.4933414,47.1190983 C36.2113566,45.8667332 34.5038477,45.4816245 34.4158679,44.3952949 C34.0522355,39.9023228 35.8388772,35.5973526 37.1489671,31.4041565 C38.710362,26.4065336 39.854626,21.2849322 41.464321,16.3042488 C42.1771089,14.098711 45.8502346,2.8983607 48.6260171,3.83116599 Z\",\n    id: \"Turban\",\n    fill: \"#8991DC\"\n  }), /* @__PURE__ */ React.createElement(\"path\", {\n    d: \"M32.3160356,9 C30.5618427,14.565951 30.1845546,17.5370354 30.5618427,25.1421085 L29.7013199,25.1421085 C28.0937737,17.9652054 29.5245027,11.2089071 31.2344582,9 L32.3160356,9 Z M8.78209035,23.3643083 C12.0510625,31.2963757 13.5415304,35.9803784 22.6701438,42.3991504 L21.9652448,42.892726 C12.9031248,37.7568562 10.2641419,31.6306096 8.09450288,23.6947526 L8.78209035,23.3643083 Z M22.2134556,15.2923054 C23.6982144,26.5510679 24.1316878,32.9820818 31.8664459,45.2976376 L31.0435239,45.5492301 C23.0831253,34.8261446 21.8212801,26.0740972 21.4451908,15.3541394 L22.2134556,15.2923054 Z M13.6694535,48.7363176 L14.373523,47.8804331 C23.9808594,50.889665 22.9106953,57.1023672 35.0112076,63.394114 L34,64.0068145 C23.4044272,59.6340646 20.9275677,50.2553327 13.6694535,48.7363176 Z\",\n    id: \"Shade\",\n    fillOpacity: \"0.2\",\n    fill: \"#000000\"\n  })));\n});\nconst Hijab2 = forwardRef((props, ref) => {\n  const { skin } = props;\n  return /* @__PURE__ */ React.createElement(React.Fragment, null, /* @__PURE__ */ React.createElement(\"defs\", null, /* @__PURE__ */ React.createElement(\"path\", {\n    d: \"M88.9653685,36.4430297 C89.4999691,36.6226829 88.9653685,34.3225512 87.6868166,33.4813564 C83.7660645,30.9017847 72.0947424,27.0839303 64.1137724,28.7406841 C58.7672704,29.8505539 52.0993486,32.636415 47.8289387,36.1877103 C43.9792789,39.3892113 40.4764093,45.033302 39.1133474,49.9918439 C37.6821783,55.1984097 37.1411992,62.44301 39.1133474,66.9855218 C41.4620202,72.3952949 49.7800176,78.2256509 50,79 C50.2511077,79.883589 49.2679536,83.3356439 48.5484461,86.9730456 C47.8289387,90.6104473 48.1563977,99.8717948 48.5484461,101.382347 C49.1749258,103.796156 52.5346705,104.983027 54,105.157641 C62.1002972,106.122903 67.9721652,116.178825 70.4158679,118.751689 C81.2934649,129.672643 88.8850592,134.42208 93.1906506,133 C94.3238577,132.625717 92.6252813,119.055865 91.4920742,113.239686 C90.358867,107.423506 79.2449088,97.0442856 78.533108,93.623838 C78.1138713,91.608903 78.0438912,88.1013333 78,87.9414083 C76.9516979,80.7151058 77.1322659,80.127698 75.6032923,77.1830656 C74.0743186,74.2384331 72.8888959,74.0655993 73.2563494,73.2078664 C75.0518381,69.0167239 80.8264476,56.1931961 82.1365375,52 C83.6979324,47.0023771 82.9600484,48.6438901 84.5697434,43.6632067 C85.2825313,41.457669 86.189586,35.5102244 88.9653685,36.4430297 Z\",\n    id: \"path-1\"\n  })), /* @__PURE__ */ React.createElement(\"g\", {\n    id: \"Head/Front/Hijab2\",\n    stroke: \"none\",\n    strokeWidth: \"1\",\n    fill: \"none\",\n    fillRule: \"evenodd\"\n  }, /* @__PURE__ */ React.createElement(\"g\", {\n    id: \"Head\",\n    transform: \"translate(54.000000, 31.000000)\",\n    fill: skin\n  }, /* @__PURE__ */ React.createElement(\"path\", {\n    d: \"M8.26227388,34.4901268 C3.65436435,29.0813759 0.535634794,22.4528771 1.05677633,15.0254539 C2.55833022,-6.37502057 32.3485306,-1.66718886 38.1433414,9.13393292 C43.9381521,19.9350547 43.249578,47.3329958 35.7603014,49.2634576 C32.7735882,50.033323 26.4110012,48.1474609 19.935372,44.244306 L24,73 L0,73 L8.26227388,34.4901268 Z\"\n  })), /* @__PURE__ */ React.createElement(\"mask\", {\n    id: \"mask-2\",\n    fill: \"white\"\n  }, /* @__PURE__ */ React.createElement(\"use\", {\n    xlinkHref: \"#path-1\"\n  })), /* @__PURE__ */ React.createElement(\"use\", {\n    id: \"Hijab\",\n    fill: \"#89C5CC\",\n    xlinkHref: \"#path-1\"\n  }), /* @__PURE__ */ React.createElement(\"path\", {\n    d: \"M68.3160356,37 C66.5618427,42.565951 66.1845546,45.5370354 66.5618427,53.1421085 L65.7013199,53.1421085 C64.0937737,45.9652054 65.5245027,39.2089071 67.2344582,37 L68.3160356,37 Z M44.7820904,51.3643083 C48.0510625,59.2963757 49.5415304,63.9803784 58.6701438,70.3991504 L57.9652448,70.892726 C48.9031248,65.7568562 46.2641419,59.6306096 44.0945029,51.6947526 L44.7820904,51.3643083 Z M58.2134556,43.2923054 C59.6982144,54.5510679 60.1316878,60.9820818 67.8664459,73.2976376 L67.0435239,73.5492301 C59.0831253,62.8261446 57.8212801,54.0740972 57.4451908,43.3541394 L58.2134556,43.2923054 Z M49.6694535,76.7363176 L50.373523,75.8804331 C59.9808594,78.889665 58.9106953,85.1023672 71.0112076,91.394114 L70,92.0068145 C59.4044272,87.6340646 56.9275677,78.2553327 49.6694535,76.7363176 Z\",\n    id: \"Shade\",\n    fillOpacity: \"0.2\",\n    fill: \"#000000\",\n    mask: \"url(#mask-2)\"\n  })));\n});\nconst Long = forwardRef((props, ref) => {\n  const { skin, hair } = props;\n  return /* @__PURE__ */ React.createElement(\"g\", {\n    id: \"Head/Front/Long\",\n    stroke: \"none\",\n    strokeWidth: \"1\",\n    fill: \"none\",\n    fillRule: \"evenodd\"\n  }, /* @__PURE__ */ React.createElement(\"path\", {\n    d: \"M95.7620125,45.2901669 C99.2090333,57.9923169 103.701116,86.5437798 99.1172687,91.0224659 L70.1172687,91.0224659 C70.1143073,90.9710129 70.1114038,90.9196907 70.108558,90.8684989 C59.3599056,89.678999 51,80.5657798 51,69.5 L51,48.5 C51,36.6258779 60.6258779,27 72.5,27 L74.5,27 C85.2832975,27 94.2124503,34.9385375 95.7620125,45.2901669 Z\",\n    id: \"Hair-Back\",\n    fill: hair\n  }), /* @__PURE__ */ React.createElement(\"g\", {\n    id: \"Head\",\n    transform: \"translate(54.000000, 31.000000)\",\n    fill: skin\n  }, /* @__PURE__ */ React.createElement(\"path\", {\n    d: \"M8.26227388,34.4901268 C3.65436435,29.0813759 0.535634794,22.4528771 1.05677633,15.0254539 C2.55833022,-6.37502057 32.3485306,-1.66718886 38.1433414,9.13393292 C43.9381521,19.9350547 43.249578,47.3329958 35.7603014,49.2634576 C32.7735882,50.033323 26.4110012,48.1474609 19.935372,44.244306 L24,73 L0,73 L8.26227388,34.4901268 Z\"\n  })), /* @__PURE__ */ React.createElement(\"path\", {\n    d: \"M68.7499646,61.874834 C69.855742,73.75284 69.4127345,87.3172649 66.1172687,90.5371269 L37.1172687,90.5371269 C35.5014749,62.4634848 51.1172687,73.3348557 51.1172687,46.9027926 C52.0908529,45.9515442 53.0108111,45.0100255 53.9211179,44.1980592 L53.888877,43.4207004 C58.9105508,33.1402335 65.2813979,28 73.0014183,28 C84.581449,28 88.2365853,33.3883223 91.3486809,37.9630857 C89.0215226,45.9481754 79.9904303,47.1321867 71.9657406,52.1095118 C71.0198539,51.3410043 69.8137154,50.8804131 68.5,50.8804131 C65.4624339,50.8804131 63,53.3428469 63,56.3804131 C63,59.4179792 65.4624339,61.8804131 68.5,61.8804131 C68.5837722,61.8804131 68.6671069,61.8785402 68.7499646,61.874834 Z\",\n    id: \"Hair-Front\",\n    fill: hair\n  }));\n});\nconst NoHair = forwardRef((props, ref) => {\n  const { skin, hair } = props;\n  return /* @__PURE__ */ React.createElement(\"g\", {\n    id: \"Head/Front/No-Hair\",\n    stroke: \"none\",\n    strokeWidth: \"1\",\n    fill: \"none\",\n    fillRule: \"evenodd\"\n  }, /* @__PURE__ */ React.createElement(\"g\", {\n    id: \"Head\",\n    transform: \"translate(54.000000, 31.000000)\",\n    fill: skin\n  }, /* @__PURE__ */ React.createElement(\"path\", {\n    d: \"M8.26227388,34.4901268 C3.65436435,29.0813759 0.535634794,22.4528771 1.05677633,15.0254539 C2.55833022,-6.37502057 32.3485306,-1.66718886 38.1433414,9.13393292 C43.9381521,19.9350547 43.249578,47.3329958 35.7603014,49.2634576 C32.7735882,50.033323 26.4110012,48.1474609 19.935372,44.244306 L24,73 L0,73 L8.26227388,34.4901268 Z\"\n  })));\n});\nconst Pony = forwardRef((props, ref) => {\n  const { skin, hair } = props;\n  return /* @__PURE__ */ React.createElement(\"g\", {\n    id: \"Head/Front/Pony\",\n    stroke: \"none\",\n    strokeWidth: \"1\",\n    fill: \"none\",\n    fillRule: \"evenodd\"\n  }, /* @__PURE__ */ React.createElement(\"g\", {\n    id: \"Head\",\n    transform: \"translate(54.000000, 31.000000)\",\n    fill: skin\n  }, /* @__PURE__ */ React.createElement(\"path\", {\n    d: \"M8.26227388,34.4901268 C3.65436435,29.0813759 0.535634794,22.4528771 1.05677633,15.0254539 C2.55833022,-6.37502057 32.3485306,-1.66718886 38.1433414,9.13393292 C43.9381521,19.9350547 43.249578,47.3329958 35.7603014,49.2634576 C32.7735882,50.033323 26.4110012,48.1474609 19.935372,44.244306 L24,73 L0,73 L8.26227388,34.4901268 Z\"\n  })), /* @__PURE__ */ React.createElement(\"path\", {\n    d: \"M70.5687217,63.9853286 C67.5926236,69.6979779 63.4765087,74 59.3643383,74 C51.5536227,74 46,63.5572795 46,52.3295687 C46,51.9350856 46.0078163,51.5432268 46.0232386,51.1542949 C37.7608945,56.8241057 31.3932077,68 20.4607455,68 C5.58722916,68 -0.31966425,38 20.4607455,38 C34.593003,38 41.5445762,40.0604811 47.5354741,43.1074469 C48.7170741,39.7763359 50.5188193,36.9756887 52.7219959,35.0199012 C53.2520171,34.4232542 54.0645989,33.8524026 55.1129199,33.3231942 C55.7538221,32.972543 56.4170423,32.6869516 57.098675,32.4720339 C60.7117049,31.1442871 65.9449543,30.2077896 71.790603,30.003655 C72.8821722,29.9655366 73.9542211,29.9543821 75.0000488,29.9684338 C75.0170696,24.4601029 79.4876784,20 85,20 C90.5228475,20 95,24.4771525 95,30 C95,35.3410915 90.8126832,39.7041827 85.5417481,39.9855753 C82.5265081,40.9159529 78.6524637,41.5990548 74.3561881,41.8871153 C74.7733127,43.4557543 75,45.2377873 75,47.2515622 C75,49.0297049 74.8037398,50.9155223 74.4423579,52.830311 C73.5105469,51.7227516 72.2646032,51 71,51 C67.4624339,51 65,53.9101491 65,57 C65,60.9215044 67.2638886,63.7584261 70.5687217,63.9853286 Z\",\n    id: \"Hair\",\n    fill: hair\n  }));\n});\nconst Rad = forwardRef((props, ref) => {\n  const { skin, hair } = props;\n  return /* @__PURE__ */ React.createElement(\"g\", {\n    id: \"Head/Front/Rad\",\n    stroke: \"none\",\n    strokeWidth: \"1\",\n    fill: \"none\",\n    fillRule: \"evenodd\"\n  }, /* @__PURE__ */ React.createElement(\"g\", {\n    id: \"Head\",\n    transform: \"translate(54.000000, 31.000000)\",\n    fill: skin\n  }, /* @__PURE__ */ React.createElement(\"path\", {\n    d: \"M8.26227388,34.4901268 C3.65436435,29.0813759 0.535634794,22.4528771 1.05677633,15.0254539 C2.55833022,-6.37502057 32.3485306,-1.66718886 38.1433414,9.13393292 C43.9381521,19.9350547 43.249578,47.3329958 35.7603014,49.2634576 C32.7735882,50.033323 26.4110012,48.1474609 19.935372,44.244306 L24,73 L0,73 L8.26227388,34.4901268 Z\"\n  })), /* @__PURE__ */ React.createElement(\"path\", {\n    d: \"M95.4066181,38.9017011 C96.181796,38.1335173 96.604637,37.0370644 96.970412,35.9959366 C97.3502694,34.9144095 97.7193579,33.8217377 97.9715531,32.6960301 C98.4754831,30.446804 98.4802693,27.8601542 96.8757008,26.1136308 C95.5888613,24.7130885 93.6580039,24.0849092 91.8759783,23.9483875 C90.6887283,23.8573398 89.4693557,24.0236137 88.3312561,24.397755 C87.2020846,24.7689112 86.2287403,25.5086363 85.1340846,25.9677555 C85.0922975,23.5438969 84.6770959,21.0076965 83.4474146,18.9380781 C82.2641224,16.9467707 80.3775371,15.8293221 78.2290003,15.5336907 C76.0237656,15.230298 73.8461434,15.7463343 71.8719342,16.8139306 C71.3776685,17.0813024 70.888005,17.3614108 70.4194191,17.6784359 C70.027044,17.943917 69.6191137,18.2636287 69.1587196,18.3715924 C68.6454933,18.4920937 68.3910891,18.1956663 68.0575289,17.8212265 C67.6664423,17.3822075 67.2258372,16.9955285 66.7595523,16.6527315 C64.6978111,15.1372602 61.9926962,14.5141557 59.6041137,15.4225429 C58.5035673,15.8410637 57.4333948,16.5518327 56.6867499,17.531267 C56.0211941,18.4043297 55.5464414,19.7892496 54.627862,20.3975277 C54.2380641,20.6557449 53.9627664,20.3136445 53.6078524,20.0608006 C53.074745,19.6808879 52.5663049,19.2616705 52.0267546,18.8921065 C51.2688806,18.3728859 50.448326,17.9845153 49.5696008,17.7812252 C48.2832216,17.4836038 46.505522,17.5533573 46.1377221,19.2381872 C45.9996591,19.8710433 46.1055074,20.5478808 46.1501478,21.1855131 C46.2113557,22.0610635 46.2752329,22.9363153 46.3512596,23.8105721 C46.40897,24.4743744 46.4819593,25.1154894 46.6072285,25.767351 C46.674051,26.1148248 46.8831704,26.7626067 46.7341544,27.110578 C46.5479534,27.5455173 45.6885571,27.2982457 45.3214015,27.3133706 C44.5962024,27.3433218 43.8679659,27.47049 43.1974398,27.7803507 C42.6777706,28.0205574 42.1314092,28.3738025 41.9120731,28.9694434 C41.7772315,29.3353257 41.8127597,29.7111587 41.8764528,30.0875886 C41.9528477,30.5393443 41.8654998,30.778954 41.8084337,31.2347894 C40.8344451,30.7551721 37.4592643,29.6895659 37.0345824,31.4350943 C36.8932059,32.0163069 37.2151688,32.6730443 37.460829,33.1632092 C37.8916777,34.0229382 38.4565395,34.8087345 39.0340112,35.5581116 C40.2385651,37.1214452 41.6766296,38.4698465 43.2238559,39.6230176 C41.4110883,40.428914 40.9379003,42.8060049 42.5074008,44.2222691 C43.2003852,44.8475627 44.1321265,44.9867711 45.0062496,44.9467698 C45.3261876,44.9321425 45.7874102,44.8091535 46.0391451,44.8648767 C46.174631,44.8948279 46.3196892,45.0096574 46.5073629,45.0224936 C47.741002,45.1069739 49.1335978,44.8097505 50.3395323,44.5360104 C52.4883453,44.0482337 54.522658,43.0301912 56.1839244,41.4796939 C56.6100789,41.0819697 56.9621396,40.8530072 57.5357455,40.858878 C58.038387,40.8639528 58.5315481,41.0017682 59.0337294,41.0145049 C60.3624479,41.0484363 61.5604668,40.3988633 62.7942901,39.9665112 C62.8698566,41.6333306 63.3445173,43.4691107 64.0263646,44.9686611 C64.5823904,46.1914862 65.7435005,46.3692033 66.8844533,46.4764704 C70.5329989,46.819765 74.1944304,46.4366682 77.8475782,46.441743 C74.3112318,47.241072 70.6569795,47.5705353 67.1520195,48.5111623 C65.5677002,48.9362505 66.7775005,50.0040458 67.4549298,50.7442685 C68.570387,51.9632129 69.3997776,53.4735099 69.9750402,55.0646055 C71.70497,52.8096081 74.7626979,51.3237895 77.4716786,52.016548 C80.464885,52.781846 82.5725552,56.8296371 80.6585414,59.7396803 C79.5473181,61.428988 77.540618,62.0811481 75.8708838,62.8069425 C77.1734624,64.1612146 77.4885222,66.161378 78.2725362,67.846208 C78.6592047,68.6770803 79.2019765,69.6165133 80.0667112,69.9060748 C80.3866493,70.0132424 80.7618126,70.0223969 81.0141918,70.2832012 C81.3268585,70.6060971 81.4013205,70.9671037 81.8005988,71.244625 C83.3938461,72.3523221 85.8825703,72.2669462 87.294771,70.8214274 C88.571854,69.5141219 88.2395823,67.4453991 87.1729994,66.1199836 C88.8708064,65.4122993 91.9639705,64.502121 91.2892105,61.8570614 C94.96813,61.612775 103.90044,55.6462162 98.9627536,51.2862759 C101.672563,49.7547841 104.162115,46.011978 102.421509,42.7126686 C101.081193,40.1720899 97.9640977,39.0364317 95.4066181,38.9017011\",\n    id: \"Hair\",\n    fill: hair,\n    transform: \"translate(70.000000, 43.500000) scale(-1, 1) translate(-70.000000, -43.500000) \"\n  }));\n});\nconst Short = forwardRef((props, ref) => {\n  const { skin, hair } = props;\n  return /* @__PURE__ */ React.createElement(\"g\", {\n    id: \"Head/Front/Short-1\",\n    stroke: \"none\",\n    strokeWidth: \"1\",\n    fill: \"none\",\n    fillRule: \"evenodd\"\n  }, /* @__PURE__ */ React.createElement(\"g\", {\n    id: \"Head\",\n    transform: \"translate(54.000000, 31.000000)\",\n    fill: skin\n  }, /* @__PURE__ */ React.createElement(\"path\", {\n    d: \"M8.26227388,34.4901268 C3.65436435,29.0813759 0.535634794,22.4528771 1.05677633,15.0254539 C2.55833022,-6.37502057 32.3485306,-1.66718886 38.1433414,9.13393292 C43.9381521,19.9350547 43.249578,47.3329958 35.7603014,49.2634576 C32.7735882,50.033323 26.4110012,48.1474609 19.935372,44.244306 L24,73 L0,73 L8.26227388,34.4901268 Z\"\n  })), /* @__PURE__ */ React.createElement(\"path\", {\n    d: \"M81.5586899,41.7004095 C78.3018196,43.5222215 75.9840093,46.9359598 73.1939275,51.4137701 C72.5143905,51.14668 71.7743247,51 71,51 C67.6862915,51 65,53.6862915 65,57 C65,58.6822183 65.6922919,60.2027431 66.807515,61.292214 C65.4191964,63.2518162 63.8632894,65.2988831 62.0803863,67.4111902 C55.4270381,63.419452 50.4784394,51.7854049 56.8311103,40.554248 C62.2968954,18.0574265 93.2683534,32.0209586 99.2270045,28.2267775 C100.529452,36.3904854 96.3284471,42.9730591 81.5586899,41.7004095 Z\",\n    id: \"Hair\",\n    fill: hair\n  }));\n});\nconst Short2 = forwardRef((props, ref) => {\n  const { skin, hair } = props;\n  return /* @__PURE__ */ React.createElement(\"g\", {\n    id: \"Head/Front/Short-2\",\n    stroke: \"none\",\n    strokeWidth: \"1\",\n    fill: \"none\",\n    fillRule: \"evenodd\"\n  }, /* @__PURE__ */ React.createElement(\"g\", {\n    id: \"Head\",\n    transform: \"translate(54.000000, 31.000000)\",\n    fill: skin\n  }, /* @__PURE__ */ React.createElement(\"path\", {\n    d: \"M8.26227388,34.4901268 C3.65436435,29.0813759 0.535634794,22.4528771 1.05677633,15.0254539 C2.55833022,-6.37502057 32.3485306,-1.66718886 38.1433414,9.13393292 C43.9381521,19.9350547 43.249578,47.3329958 35.7603014,49.2634576 C32.7735882,50.033323 26.4110012,48.1474609 19.935372,44.244306 L24,73 L0,73 L8.26227388,34.4901268 Z\"\n  })), /* @__PURE__ */ React.createElement(\"path\", {\n    d: \"M60.4181384,70.3075201 C57.4059021,56.9064588 48.8245327,47.7714043 50.1351137,41.781703 C51.0088343,37.7885688 53.3375617,35.3053788 57.1212959,34.3321331 C59.0782074,26.4155009 65.3896485,23.0482486 76.0556193,24.2303763 C92.0545754,26.0035679 101.819448,32.6477587 97.6024819,47.2678779 C93.7260987,47.2678779 89.0464758,45.8659867 82.57553,48.2678779 C80.5223249,49.0299883 79.0538125,51.3933595 78.1699927,55.3579915 L75.2457978,55.3579915 C72.4077436,50.6530572 69.6094038,48.9241222 66.8507787,50.1711866 C64.0921535,51.418251 63.4650732,54.4473753 64.9695377,59.2585597 L63.529076,70.3075201 L60.4181384,70.3075201 Z\",\n    id: \"Hair\",\n    fill: hair\n  }));\n});\nconst Short3 = forwardRef((props, ref) => {\n  const { skin, hair } = props;\n  return /* @__PURE__ */ React.createElement(\"g\", {\n    id: \"Head/Front/Short-Beard\",\n    stroke: \"none\",\n    strokeWidth: \"1\",\n    fill: \"none\",\n    fillRule: \"evenodd\"\n  }, /* @__PURE__ */ React.createElement(\"g\", {\n    id: \"Head\",\n    transform: \"translate(54.000000, 31.000000)\",\n    fill: skin\n  }, /* @__PURE__ */ React.createElement(\"path\", {\n    d: \"M8.26227388,34.4901268 C3.65436435,29.0813759 0.535634794,22.4528771 1.05677633,15.0254539 C2.55833022,-6.37502057 32.3485306,-1.66718886 38.1433414,9.13393292 C43.9381521,19.9350547 43.249578,47.3329958 35.7603014,49.2634576 C32.7735882,50.033323 26.4110012,48.1474609 19.935372,44.244306 L24,73 L0,73 L8.26227388,34.4901268 Z\"\n  })), /* @__PURE__ */ React.createElement(\"path\", {\n    d: \"M75.1353054,48.388929 C76.0539893,61.1861055 78.4841513,67.5846937 82.4257914,67.5846937 C88.3385979,67.5846937 93.355194,63.8310443 95.9495915,63.8310443 C97.8408192,63.8310443 97.4185661,66.1977405 96.1649615,67.9524776 C95.1306973,69.4001921 90.0939174,70.7956158 90.0939174,73.0400595 C90.0939174,75.2845031 94.0733913,73.5481008 94.0733913,74.8792364 C94.0733913,77.0810973 94.7727779,81.2209894 90.9512241,81.2209894 C87.0836843,81.2209894 75.9947625,79.8115837 74.0944216,74.0714721 C72.8679972,70.366972 72.0750257,62.6905548 71.7155071,51.0422204 C71.4808897,51.0143412 71.2421196,51 71,51 C67.6862915,51 65,53.6862915 65,57 C65,58.6822183 65.6922919,60.2027431 66.807515,61.292214 C65.4191964,63.2518162 63.8632894,65.2988831 62.0803863,67.4111902 C55.3824054,63.3926741 50.4121226,51.6289713 56.9604861,40.3282783 C58.7704744,34.7922446 62.8680346,31.8352408 67.7073518,30.4622091 C71.6274481,28.8224203 75.6968791,28.6375327 79.1320584,29.6205713 C85.8659611,30.1981637 91.8790132,32.2515132 93.5831606,33.4709469 C93.5831606,39.8461712 92.3478701,41.7376815 81.7968056,41.5709519 C79.204238,42.9401362 77.2112029,45.2978697 75.1353054,48.388929 Z\",\n    id: \"Hair\",\n    fill: hair\n  }));\n});\nconst Top = forwardRef((props, ref) => {\n  const { skin, hair } = props;\n  return /* @__PURE__ */ React.createElement(\"g\", {\n    id: \"Head/Front/Top\",\n    stroke: \"none\",\n    strokeWidth: \"1\",\n    fill: \"none\",\n    fillRule: \"evenodd\"\n  }, /* @__PURE__ */ React.createElement(\"g\", {\n    id: \"Head\",\n    transform: \"translate(54.000000, 31.000000)\",\n    fill: skin,\n    s: true\n  }, /* @__PURE__ */ React.createElement(\"path\", {\n    d: \"M8.26227388,34.4901268 C3.65436435,29.0813759 0.535634794,22.4528771 1.05677633,15.0254539 C2.55833022,-6.37502057 32.3485306,-1.66718886 38.1433414,9.13393292 C43.9381521,19.9350547 43.249578,47.3329958 35.7603014,49.2634576 C32.7735882,50.033323 26.4110012,48.1474609 19.935372,44.244306 L24,73 L0,73 L8.26227388,34.4901268 Z\"\n  })), /* @__PURE__ */ React.createElement(\"path\", {\n    d: \"M66.9985085,30.7865552 C79.0550637,26.609742 94.700908,31.4906831 92.6071441,41.2806601 C91.262667,47.5671373 83.9819788,50.7071224 76.8190787,54.0674377 C75.7647673,52.2369093 73.7539364,51 71.4466684,51 C68.0464589,51 65.2900445,53.6862915 65.2900445,57 C65.2900445,58.1936082 65.6476791,59.3058114 66.264215,60.240388 C63.8546189,62.336481 62.1544254,64.859497 61.7432388,68.1317726 C57.859479,68.1317726 51.5822399,56.7286072 53.6546048,45.9097779 C53.1112722,45.9693991 52.5592097,46 52,46 C43.7157288,46 37,39.2842712 37,31 C37,22.7157288 43.7157288,16 52,16 C60.2130054,16 66.8843391,22.6006809 66.9985123,30.7865539 Z\",\n    id: \"Hair\",\n    fill: hair\n  }));\n});\nconst Turban = forwardRef((props, ref) => {\n  const { skin } = props;\n  return /* @__PURE__ */ React.createElement(React.Fragment, null, /* @__PURE__ */ React.createElement(\"defs\", null, /* @__PURE__ */ React.createElement(\"path\", {\n    d: \"M59.5761618,12.9456954 C59.3658913,11.6405875 59.7821901,11.0000348 54.5346912,7.32322248 C49.2871923,3.64641021 40.8148726,-0.690083867 32.2816409,1.19718054 C21.2074934,3.64641021 16.8090436,10.95123 12.5386337,14.5025253 C8.68897397,17.7040264 4.82639368,18.0773849 2.53730321,22.0499243 C0.248212735,26.0224636 -0.969669172,37.4512721 1.02080294,41.9950076 C3.76655586,48.2628548 9.18121558,49.9508389 13.133879,51.7566178 C19.9127597,54.8535575 29.4945554,51.5827766 29.7266676,51.0409656 C31.5221564,46.8498232 41.186894,35.0268608 47,30.0596268 C51.2746625,26.4069756 60.5630562,19.0711556 59.5761618,12.9456954 Z\",\n    id: \"path-1\"\n  })), /* @__PURE__ */ React.createElement(\"g\", {\n    id: \"Head/Front/Turban-1\",\n    stroke: \"none\",\n    strokeWidth: \"1\",\n    fill: \"none\",\n    fillRule: \"evenodd\"\n  }, /* @__PURE__ */ React.createElement(\"g\", {\n    id: \"Head\",\n    transform: \"translate(54.000000, 31.000000)\",\n    fill: skin\n  }, /* @__PURE__ */ React.createElement(\"path\", {\n    d: \"M8.26227388,34.4901268 C3.65436435,29.0813759 0.535634794,22.4528771 1.05677633,15.0254539 C2.55833022,-6.37502057 32.3485306,-1.66718886 38.1433414,9.13393292 C43.9381521,19.9350547 43.249578,47.3329958 35.7603014,49.2634576 C32.7735882,50.033323 26.4110012,48.1474609 19.935372,44.244306 L24,73 L0,73 L8.26227388,34.4901268 Z\"\n  })), /* @__PURE__ */ React.createElement(\"g\", {\n    id: \"Turban\"\n  }, /* @__PURE__ */ React.createElement(\"mask\", {\n    id: \"mask-2\",\n    fill: \"white\"\n  }, /* @__PURE__ */ React.createElement(\"use\", {\n    xlinkHref: \"#path-1\"\n  })), /* @__PURE__ */ React.createElement(\"use\", {\n    fill: \"#5C63AB\",\n    xlinkHref: \"#path-1\"\n  }), /* @__PURE__ */ React.createElement(\"path\", {\n    d: \"M12.4570236,12 C14.25711,23.3796891 18.9826226,33.7873661 26.6335616,43.223031 C17.7122912,36.3009755 11.8344374,26.6221332 9,14.1865041 L12.4570236,12 Z M7.99840897,16.3421428 C10.9512397,28.5681061 18.6184367,40.1207252 31,51 C16.673342,42.3522376 7.67334197,31.1925804 4,17.5210284 L7.99840897,16.3421428 Z\",\n    id: \"SHade\",\n    fillOpacity: \"0.2\",\n    fill: \"#000000\",\n    mask: \"url(#mask-2)\"\n  }))));\n});\nconst Turban2 = forwardRef((props, ref) => {\n  const { skin } = props;\n  return /* @__PURE__ */ React.createElement(React.Fragment, null, /* @__PURE__ */ React.createElement(\"defs\", null, /* @__PURE__ */ React.createElement(\"path\", {\n    d: \"M51.4175453,12.0507955 C51.8498576,10.8051312 54.7962768,6.94578045 49.5487779,3.26896817 C48.605788,2.60823496 47.0479654,3.26680115 45.6982041,2.84976736 C44.6826295,2.53598679 44.3402497,1.11914512 43.1760935,0.871968648 C41.9683844,0.615544926 40.6526543,1.77773804 39.2876744,1.67560585 C38.4512965,1.61302535 37.1608106,0.309613766 36.2900993,0.239406864 C34.7357321,0.114075645 33.3236788,1.58124561 31.8056285,1.67560585 C30.9255704,1.73030923 29.9045174,0.314316544 29.0310773,0.239406864 C26.9052532,0.0570877616 24.9691519,1.0481315 23.0958488,1.34868149 C21.3693306,1.62568151 20.5665115,5.16380349 19.2947513,6 C15.3039208,8.62401555 12.1771246,9.35770789 8.938704,12.0507955 C5.08904423,15.2522965 4.352246,17.6341562 2.75742877,19.767516 C1.16261154,21.9008757 0.177496659,29.4172796 1.10754484,34.2343867 C1.65615994,37.0758928 3.08584831,44.8361111 6.27968827,47.8406111 C10.6511987,51.952966 19.5447273,53.1714059 20.3342266,52.6227265 C23.990621,50.0816371 32.186894,36.0268608 38,31.0596268 C42.2746625,27.4069756 48.7394296,19.767516 51.4175453,12.0507955 Z\",\n    id: \"path-1\"\n  })), /* @__PURE__ */ React.createElement(\"g\", {\n    id: \"Head/Front/Turban2\",\n    stroke: \"none\",\n    strokeWidth: \"1\",\n    fill: \"none\",\n    fillRule: \"evenodd\"\n  }, /* @__PURE__ */ React.createElement(\"g\", {\n    id: \"Head\",\n    transform: \"translate(54.000000, 31.000000)\",\n    fill: skin\n  }, /* @__PURE__ */ React.createElement(\"path\", {\n    d: \"M8.26227388,34.4901268 C3.65436435,29.0813759 0.535634794,22.4528771 1.05677633,15.0254539 C2.55833022,-6.37502057 32.3485306,-1.66718886 38.1433414,9.13393292 C43.9381521,19.9350547 43.249578,47.3329958 35.7603014,49.2634576 C32.7735882,50.033323 26.4110012,48.1474609 19.935372,44.244306 L24,73 L0,73 L8.26227388,34.4901268 Z\"\n  })), /* @__PURE__ */ React.createElement(\"g\", {\n    id: \"Turban\"\n  }, /* @__PURE__ */ React.createElement(\"mask\", {\n    id: \"mask-2\",\n    fill: \"white\"\n  }, /* @__PURE__ */ React.createElement(\"use\", {\n    xlinkHref: \"#path-1\"\n  })), /* @__PURE__ */ React.createElement(\"use\", {\n    id: \"Path\",\n    fill: \"#FF9B21\",\n    xlinkHref: \"#path-1\"\n  }), /* @__PURE__ */ React.createElement(\"path\", {\n    d: \"M21.9555572,41.8421056 C24.5811812,36.027333 27.9574,28.565671 31.0112076,20.9117197 C33.2010503,15.4231782 35.5306478,8.39485486 38,-0.173250307 L40.9719724,-0.173250307 C36.290024,13.1700568 32.768261,22.4881471 30.4066836,27.7810206 C26.607923,36.2949736 23.8784274,42.7607173 21.703886,47.1002718 C25.3468741,41.7601131 30.9497299,33.0492503 36.922643,21.335361 C39.1872587,16.894068 41.853295,10.0938106 44.9207521,0.934588622 L47.6868166,2.11790169 C43.0427818,13.7106968 39.4547239,21.7949743 36.922643,26.3707343 C28.6691874,41.2856732 20.7882084,50.2847641 18.0335245,52.8387957 C17.5568888,53.2807131 17.3975435,53.3836196 17.511811,53.1576166 C17.4739444,53.1516955 17.4461564,53.1289205 17.4280597,53.0898167 C17.2342615,53.3828239 17.0414485,53.6396836 16.848515,53.8603451 C14.0706214,57.0374698 21.1787066,39.3265874 26.4178167,20.7516317 C28.0219544,15.0642561 29.6041303,7.83092542 31.1643443,-0.948360367 L34.1200359,-1.25901608 C30.8584911,12.5005919 28.3300264,22.1357612 26.5346419,27.6464918 C24.7142011,33.2341297 23.2312229,37.9679873 21.9555572,41.8421056 Z\",\n    id: \"Shade\",\n    fillOpacity: \"0.2\",\n    fill: \"#000000\",\n    mask: \"url(#mask-2)\"\n  }))));\n});\nconst Wavy = forwardRef((props, ref) => {\n  const { skin, hair } = props;\n  return /* @__PURE__ */ React.createElement(\"g\", {\n    id: \"Head/Front/Wavy\",\n    stroke: \"none\",\n    strokeWidth: \"1\",\n    fill: \"none\",\n    fillRule: \"evenodd\"\n  }, /* @__PURE__ */ React.createElement(\"g\", {\n    id: \"Head\",\n    transform: \"translate(54.000000, 31.000000)\",\n    fill: skin\n  }, /* @__PURE__ */ React.createElement(\"path\", {\n    d: \"M8.26227388,34.4901268 C3.65436435,29.0813759 0.535634794,22.4528771 1.05677633,15.0254539 C2.55833022,-6.37502057 32.3485306,-1.66718886 38.1433414,9.13393292 C43.9381521,19.9350547 43.249578,47.3329958 35.7603014,49.2634576 C32.7735882,50.033323 26.4110012,48.1474609 19.935372,44.244306 L24,73 L0,73 L8.26227388,34.4901268 Z\"\n  })), /* @__PURE__ */ React.createElement(\"path\", {\n    d: \"M94.4090961,44.9836328 C94.1713645,43.583583 93.5903632,42.028843 93.1215639,40.7042644 C92.5171614,38.996708 91.602499,37.4571303 90.5959364,36.0061417 C88.7009022,33.2743581 86.427574,30.8074902 83.917599,28.760058 C79.3328188,25.0202318 73.4966155,22.8630853 67.7574266,23.5636213 C64.8597041,23.9172965 62.046753,25.0226169 59.6525443,26.8623756 C57.4894034,28.5246153 55.4087091,30.9715506 52.6076911,31.147366 C49.5599529,31.3385142 46.7662186,28.6484698 44.321953,26.9870819 C41.5660327,25.1141023 38.6342158,23.7493178 35.4132155,23.2188049 C30.0172962,22.3303577 24.9482191,24.1534208 21.2294392,28.5804946 C17.2721527,33.2915649 14.3955069,40.2003282 16.9942826,46.442458 C17.4773396,47.6028059 18.0987894,48.5810349 18.9906704,49.3917962 C19.8086285,50.1352639 21.0578819,50.926263 21.3895284,52.1142098 C21.7417865,53.3769463 20.6895063,55.005965 20.2814572,56.1453581 C19.6968915,57.7777841 19.2169339,59.4913033 19.3875614,61.2656423 C19.6679112,64.1795448 21.4990957,66.961245 23.4327187,68.8764749 C25.4004362,70.8254368 27.8222304,71.9430234 30.408918,72.4582035 C32.1361143,72.802168 33.9012795,72.9919533 35.6566813,72.8628175 C36.5281056,72.7987608 37.2970916,72.5566738 38.1413953,72.3641627 C38.9624528,72.1769329 39.4213338,72.3949985 40.1179464,72.8452701 C43.3539792,74.9373376 46.8334778,75.746736 50.5700799,75.4356517 C53.723666,75.1729507 57.3584495,74.4086987 59.9310344,72.2479746 C62.7879984,69.84823 62.7311226,66.5390835 62.0588411,63.0035235 C62.7711061,63.3565173 64.7416132,63.575094 63.5641132,62.1680594 C63.0976384,61.6107994 62.2162957,61.3840451 61.6177822,61.0562652 C60.9208597,60.6746502 60.2132439,60.181447 59.6720712,59.5589377 C57.4869238,57.0453901 59.6939227,51.9300465 62.4403895,51.0870864 C66.5208811,49.8347421 67.4344587,55.6054753 70.3473686,57.0982029 C72.0221834,57.9564958 73.7741757,56.7833706 75.0290082,55.5855427 C76.709867,53.980886 77.8554422,51.8550865 78.8444926,49.6918069 C79.6591961,47.9103126 80.4173338,46.1037748 81.2476898,44.3311394 C81.6354372,43.5033417 82.9778306,41.1632245 82.3036894,40.2272457 C85.2263628,39.6444311 88.4816125,40.8589547 90.9987164,42.4516859 C92.0390635,43.110142 92.8322255,43.8360622 93.387191,44.9984544 C93.5060568,45.2475263 93.7648651,45.9879274 94.0898476,46.0182522 C94.69487,46.0748129 94.4687615,45.335434 94.4090961,44.9836328\",\n    id: \"Hair\",\n    fill: hair\n  }));\n});\nexport {\n  Afro,\n  Airy,\n  Caesar,\n  Chongo,\n  Curly,\n  Hijab,\n  Hijab2,\n  Long,\n  NoHair,\n  Pony,\n  Rad,\n  Short,\n  Short2,\n  Short3,\n  Top,\n  Turban,\n  Turban2,\n  Wavy\n};\n", "import * as React from \"react\";\nimport { forwardRef } from \"react\";\nconst Hoodie = forwardRef((props, ref) => {\n  const { skin, clothes, clothes2 } = props;\n  return /* @__PURE__ */ React.createElement(\"g\", {\n    id: \"Body/Hoodie\",\n    stroke: \"none\",\n    strokeWidth: \"1\",\n    fill: \"none\",\n    fillRule: \"evenodd\"\n  }, /* @__PURE__ */ React.createElement(\"path\", {\n    d: \"M190.781205,92.2114854 L222.679476,115.635084 C231.330944,117.969562 238.558965,120.874047 244.363541,124.34854 C245.734683,125.597945 247.391836,128.128197 241.70538,127.690906 C236.018925,127.253615 230.01796,127.049392 229.233339,128.988954 C228.448719,130.928516 231.889854,133.24802 230.303794,135.864997 C229.246421,137.609648 224.250967,133.234999 215.31743,122.74105 L183.729774,109.642447 L190.781205,92.2114854 Z M68.3079281,93.0198914 L89.2053198,93.1020711 C76.3021447,134.755739 69.3363474,156.856914 68.3079281,159.405597 C65.9939846,165.140133 70.8906002,173.873732 72.9845874,178.567103 C66.1645409,181.61887 66.8912241,170.316929 58.2879189,174.319492 C50.4352209,177.972846 44.4616931,184.59248 35.3890352,178.994371 C34.2736052,178.306117 33.0512757,175.714714 36.0045784,173.68967 C43.3623323,168.644547 53.9653015,159.814672 55.3979297,156.908251 C57.3515741,152.944826 61.6549068,131.648706 68.3079281,93.0198914 Z\",\n    id: \"Skin\",\n    fill: skin\n  }), /* @__PURE__ */ React.createElement(\"path\", {\n    d: \"M122.731734,9.58031077 L131.216685,7.34914009 C165.5935,32.1628362 183.361709,84.0563407 224.996623,108.72736 L216.58973,121.240539 C147.889238,118.771641 125.383314,55.5469019 122.731734,9.58031077 Z\",\n    id: \"Coat-Back\",\n    fill: \"#E87613\",\n    transform: \"translate(173.864178, 64.294840) rotate(5.000000) translate(-173.864178, -64.294840) \"\n  }), /* @__PURE__ */ React.createElement(\"path\", {\n    d: \"M90,114 C124.671756,114 150.175573,114 166.511451,114 C170.007634,114 169.348845,108.951637 168.84345,106.404206 C163.010588,77.0037663 140.241304,45.3115155 140.241304,3.4607303 L118.1718,0 C99.917485,29.3584068 93.6048263,65.5045499 90,114 Z\",\n    id: \"Shirt\",\n    fill: \"#DDE3E9\"\n  }), /* @__PURE__ */ React.createElement(\"path\", {\n    d: \"M90.6148413,28.8579585 C87.4095228,27.9365884 84.8712423,25.7876656 83,22.4111902 C74.933557,7.85607578 77.8467271,-0.157592785 86.4671964,-2.7917309 C95.0876658,-5.42586901 102.775319,-2.04281037e-14 116.510031,-7.10542736e-15 C117.257085,-6.21724894e-15 117.941303,0.0468325343 118.562683,0.140497603 L125.471587,0.534739944 C145.293986,67.7151944 150.760885,112.536948 141.872285,135 L81.6518141,135 C78.0838152,143.319871 74.6695413,150.319871 71.4089926,156 L55,156 C53.4556832,106.067091 65.327297,63.6864104 90.6148413,28.8579585 Z\",\n    id: \"Coat-Front\",\n    fill: \"#FF9B21\"\n  }), /* @__PURE__ */ React.createElement(\"path\", {\n    d: \"M94.7652287,100.497634 C96.6591508,116.344024 99.7374079,127.844812 104,135 L81.6518141,135 C85.813785,125.295103 90.1849231,113.794314 94.7652283,100.497633 Z\",\n    id: \"Shade\",\n    fillOpacity: \"0.1\",\n    fill: \"#000000\"\n  }));\n});\nconst Jacket = forwardRef((props, ref) => {\n  const { skin, clothes, clothes2 } = props;\n  return /* @__PURE__ */ React.createElement(\"g\", {\n    id: \"Body/Jacket-2\",\n    stroke: \"none\",\n    strokeWidth: \"1\",\n    fill: \"none\",\n    fillRule: \"evenodd\"\n  }, /* @__PURE__ */ React.createElement(\"path\", {\n    d: \"M198,77.6170876 L234.234567,61.7041739 C240.582018,55.3790221 246.711387,50.5716141 252.622674,47.2819501 C254.390261,46.7192094 257.410101,46.5491987 254.188168,51.2551684 C250.966235,55.961138 247.78889,61.0560141 249.076289,62.7052963 C250.363689,64.3545786 254.093006,62.5342201 255.566345,65.2162765 C256.548571,67.0043141 250.262286,69.1431805 236.707491,71.6328758 L209.56994,92.4392868 L198,77.6170876 Z M51.5082829,82 L72,86.0658446 C51.3920824,124.471059 40.3404263,144.825845 38.8450319,147.130202 C35.4803944,152.315007 38.6196693,161.817238 39.7793043,166.821179 C32.5044044,168.51462 35.3734014,157.565005 26.1671562,159.851185 C17.7641225,161.937904 10.6393632,167.293169 2.8038784,160.07074 C1.84055159,159.182785 1.13535082,156.407288 4.41981989,154.983749 C12.6026301,151.437195 24.6920431,144.796343 26.6523424,142.218096 C29.3255608,138.702197 37.6108743,118.629498 51.5082829,82 Z\",\n    id: \"Skin\",\n    fill: skin\n  }), /* @__PURE__ */ React.createElement(\"path\", {\n    d: \"M123.280247,9.87718027 L131.765198,7.64600959 C152.120135,24.2050747 163.602366,67.2616718 176.61267,71.9556463 C188.913385,76.3936093 205.208593,69.6320097 224.503164,60.7390322 L231.796052,73.8353428 C215.409826,95.0000245 178.298612,114.916545 161.84294,106.839809 C135.533742,93.9267871 125.046804,40.501408 123.280247,9.87718027 Z\",\n    id: \"Coat-Back\",\n    fill: \"#DB2721\",\n    transform: \"translate(177.538150, 58.161768) rotate(5.000000) translate(-177.538150, -58.161768) \"\n  }), /* @__PURE__ */ React.createElement(\"path\", {\n    d: \"M90,114 C124.671756,114 150.175573,114 166.511451,114 C170.007634,114 169.348845,108.951637 168.84345,106.404206 C163.010588,77.0037663 140.241304,45.3115155 140.241304,3.4607303 L118.1718,0 C99.917485,29.3584068 93.6048263,65.5045499 90,114 Z\",\n    id: \"Shirt\",\n    fill: \"#DDE3E9\"\n  }), /* @__PURE__ */ React.createElement(\"path\", {\n    d: \"M82.3687546,84.2331696 C66.7713811,112.367832 53.6609446,132.623442 43.0374452,145 L27,141.85882 C37.3305927,77.7906722 67.2466105,30.5043988 116.748053,3.81764932e-14 L117,2.9470116e-14 L125.486398,0 C145.298923,67.5369477 150.760885,112.536948 141.872285,135 L73,135 C74.0896281,118.56345 77.5833963,101.181199 82.3687561,84.2331662 Z\",\n    id: \"Coat-Front\",\n    fill: \"#FF4133\"\n  }));\n});\nconst Jacket2 = forwardRef((props, ref) => {\n  const { skin, clothes, clothes2 } = props;\n  return /* @__PURE__ */ React.createElement(\"g\", {\n    id: \"Body/Jacket\",\n    stroke: \"none\",\n    strokeWidth: \"1\",\n    fill: \"none\",\n    fillRule: \"evenodd\"\n  }, /* @__PURE__ */ React.createElement(\"path\", {\n    d: \"M194.04441,89.1225115 L222.372314,116.757535 C230.61469,120.273345 237.368143,124.155511 242.632673,128.40403 C243.816587,129.832102 245.10547,132.568362 239.535214,131.343925 C233.964957,130.119488 228.050816,129.082079 227.003896,130.893567 C225.956977,132.705055 229.041811,135.480899 227.106974,137.851671 C225.817082,139.432186 221.479076,134.404878 214.092956,122.769747 L184.635682,105.402467 L194.04441,89.1225115 Z M68.3079281,93.0198914 L89.2053198,93.1020711 C76.3021447,134.755739 69.3363474,156.856914 68.3079281,159.405597 C65.9939846,165.140133 70.8906002,173.873732 72.9845874,178.567103 C66.1645409,181.61887 66.8912241,170.316929 58.2879189,174.319492 C50.4352209,177.972846 44.4616931,184.59248 35.3890352,178.994371 C34.2736052,178.306117 33.0512757,175.714714 36.0045784,173.68967 C43.3623323,168.644547 53.9653015,159.814672 55.3979297,156.908251 C57.3515741,152.944826 61.6549068,131.648706 68.3079281,93.0198914 Z\",\n    id: \"Skin\",\n    fill: skin\n  }), /* @__PURE__ */ React.createElement(\"path\", {\n    d: \"M122.01899,9.23199981 L130.503942,7.00082913 C148.576175,42.7520052 177.414525,74.1501034 217.01899,101.195124 L192.061793,137.56505 C151.33882,97.6857553 124.670571,55.1985909 122.01899,9.23199981 Z\",\n    id: \"Coat-Back\",\n    fill: \"#191847\",\n    transform: \"translate(169.518990, 72.282940) rotate(5.000000) translate(-169.518990, -72.282940) \"\n  }), /* @__PURE__ */ React.createElement(\"path\", {\n    d: \"M90,114 L167,114 C149.16087,70.6251468 140.241304,33.7787236 140.241304,3.4607303 L117.014208,0 C98.7598929,29.3584068 93.6048263,65.5045499 90,114 Z\",\n    id: \"Shirt\",\n    fill: \"#DDE3E9\"\n  }), /* @__PURE__ */ React.createElement(\"path\", {\n    d: \"M116.522435,0.0164198669 C116.525484,0.0109456263 116.528534,0.00547233727 116.531583,-1.73374996e-14 L118.047752,-4.26343884e-14 C119.86198,0.0624731357 122.625282,0.175030894 126.337658,0.337673275 L131.950158,16.3768801 C132.543836,35.9324229 136.010826,75.3421183 142.351127,134.605966 L91.8760816,134.605966 C92.0084015,138.699076 92.2265759,142.83042 92.5306047,147 L55,147 C60.6139164,83.6639633 81.1152373,34.6639633 116.503963,1.42108547e-14 L116.522435,0.0164198605 Z\",\n    id: \"Coat-Front\",\n    fill: \"#2F3676\"\n  }), /* @__PURE__ */ React.createElement(\"path\", {\n    d: \"M95.2102301,82.2331012 C96.6467433,107.747892 100.243333,125.336858 106,135 L91.889081,135 C91.27131,116.642855 92.3783599,99.0539088 95.2102289,82.2331082 Z\",\n    id: \"Shade\",\n    fillOpacity: \"0.1\",\n    fill: \"#000000\"\n  }), /* @__PURE__ */ React.createElement(\"polygon\", {\n    id: \"Light\",\n    fillOpacity: \"0.2\",\n    fill: \"#FFFFFF\",\n    points: \"103.110899 104 128 92.4292718 128 104\"\n  }));\n});\nconst Lab = forwardRef((props, ref) => {\n  const { skin, clothes, clothes2 } = props;\n  return /* @__PURE__ */ React.createElement(\"g\", {\n    id: \"Body/Lab-Coat\",\n    stroke: \"none\",\n    strokeWidth: \"1\",\n    fill: \"none\",\n    fillRule: \"evenodd\"\n  }, /* @__PURE__ */ React.createElement(\"path\", {\n    d: \"M190.358872,88.6100216 L220.545493,114.201672 C229.013042,117.13396 236.02085,120.535571 241.568917,124.406506 C242.849565,125.748514 244.32618,128.3882 238.68408,127.555307 C233.04198,126.722415 227.069879,126.100082 226.151873,127.980187 C225.233867,129.860292 228.504819,132.414187 226.740072,134.914152 C225.563574,136.580795 220.885448,131.868337 212.705694,120.776779 L182.108696,105.506639 L190.358872,88.6100216 Z M53.6671405,77.5359191 L71.3789189,80.1081345 C52.3668948,121.357659 42.1743233,143.172797 40.8012044,145.553548 C37.7116869,150.910237 41.3451669,160.240318 42.7655846,165.17944 C35.5871864,167.252341 37.8797238,156.161524 28.8030963,158.927786 C20.5183715,161.452702 13.6817028,167.176559 5.47644547,160.370261 C4.4676573,159.533467 3.61787693,156.797168 6.82426992,155.202852 C14.8125642,151.230829 26.541227,143.962534 28.3644086,141.283781 C30.8506424,137.630823 39.2848864,116.381535 53.6671405,77.5359191 Z\",\n    id: \"Skin\",\n    fill: skin\n  }), /* @__PURE__ */ React.createElement(\"path\", {\n    d: \"M122.979272,9.21054221 L133.596123,4.63843187 C151.668356,40.3896079 176.923065,74.3010145 216.52753,101.346035 L208.768287,117.911928 C174.615844,101.621394 142.570612,89.4491188 127.58307,61.8321985 C122.552864,52.5632462 123.64558,20.7613641 122.979272,9.21054221 Z\",\n    id: \"Coat-Back\",\n    fill: \"#C5CFD6\",\n    transform: \"translate(169.753401, 61.275180) rotate(5.000000) translate(-169.753401, -61.275180) \"\n  }), /* @__PURE__ */ React.createElement(\"path\", {\n    d: \"M90,110 C121.438326,113.333333 146.183737,113.333333 164.236234,110 C166.472817,109.587022 166.825667,105.842388 165.788454,103.300966 C149.636353,63.7244027 138.560302,29.1916266 138.560302,1.70263734 C135.596594,3.1967882 130.409827,3.42070538 123,2.37438888 C103.086202,30.7026762 93.9325378,63.2061447 90,110 Z\",\n    id: \"Shirt\",\n    fill: \"#323337\"\n  }), /* @__PURE__ */ React.createElement(\"path\", {\n    d: \"M118.049397,6.01740879e-14 L126.348425,5.5067062e-14 C128.280769,11.364871 134.375512,165.262588 153.190593,215.605966 L51.3853184,215.605966 C53.5924278,169.487243 71.0028709,114.087392 88.6398091,67.7283096 C73.0444357,81.9994875 59.4517855,106.180947 47.8618586,140.272687 L28.7926212,135.377648 C42.9712244,74.2810826 72.1224478,29.374879 116.246291,0.659036861 C116.341837,0.438307691 116.436936,0.218626329 116.531583,6.10622664e-14 L117.266004,6.06181771e-14 C117.53632,-0.173493435 117.807193,-0.346385506 118.078622,-0.518676213 L118.049397,6.1284311e-14 Z\",\n    id: \"Coat-Front\",\n    fill: \"#DDE3E9\"\n  }));\n});\nconst Long = forwardRef((props, ref) => {\n  const { skin, clothes, clothes2 } = props;\n  return /* @__PURE__ */ React.createElement(\"g\", {\n    id: \"Body/Long-Sleeve\",\n    stroke: \"none\",\n    strokeWidth: \"1\",\n    fill: \"none\",\n    fillRule: \"evenodd\"\n  }, /* @__PURE__ */ React.createElement(\"path\", {\n    d: \"M192,65.3107899 L231.482876,59.9251648 C239.381053,55.5320264 246.646993,52.5579486 253.280695,51.0029313 C255.147488,50.9484265 258.117196,51.6270536 253.693154,55.3151968 C249.269111,59.00334 244.780296,63.0831966 245.568527,65.0514942 C246.356757,67.0197919 250.471061,66.2874533 251.152638,69.3148625 C251.607023,71.3331352 244.929759,71.6610844 231.120845,70.2987101 L199.083874,83 L192,65.3107899 Z M67.9697919,74.4496834 L89.8671837,74.5318631 C65.8560993,128.56567 53.3363474,156.856914 52.3079281,159.405597 C49.9939846,165.140133 54.8906002,173.873732 56.9845874,178.567103 C50.1645409,181.61887 50.8912241,170.316929 42.2879189,174.319492 C34.4352209,177.972846 28.4616931,184.59248 19.3890352,178.994371 C18.2736052,178.306117 17.0512757,175.714714 20.0045784,173.68967 C27.3623323,168.644547 37.9653015,159.814672 39.3979297,156.908251 C41.3515741,152.944826 50.8755281,125.458637 67.9697919,74.4496834 Z\",\n    id: \"Skin\",\n    fill: skin\n  }), /* @__PURE__ */ React.createElement(\"path\", {\n    d: \"M123.473568,9.66927317 L140.652814,9.31280705 C148.188654,47.0006412 173.203746,69.0336905 223.790464,56.4079457 L234.893349,104.819132 C187.489073,115.210412 143.760505,99.6935282 130.595778,48.4746485 C127.187846,35.2156986 124.201379,21.3681777 123.473568,9.66927317 Z\",\n    id: \"Clothes-Back\",\n    fill: \"#AFB9C5\",\n    transform: \"translate(179.183459, 58.591470) rotate(5.000000) translate(-179.183459, -58.591470) \"\n  }), /* @__PURE__ */ React.createElement(\"path\", {\n    d: \"M119.490817,0.0159395536 L145.467604,5.96527657 C145.467604,50.6444246 159.700025,79.150459 167,112 L96.8436541,112 C95.8553795,123.350899 95.2484887,135.017565 94.9322404,147 L42.4016357,147 C54.3053653,83.6639633 79.4301113,34.6639633 117.775873,0 L119.477154,0 L119.490817,0.0159395536 Z\",\n    id: \"Clothes\",\n    fill: \"#C5CFD6\"\n  }), /* @__PURE__ */ React.createElement(\"path\", {\n    d: \"M107.912453,48.2592493 C106.104463,76.1005287 107.167794,97.3474456 111.102445,112 L96.8436541,112 C98.8014235,89.5139021 102.255877,68.2669888 107.91245,48.25926 Z\",\n    id: \"Shade\",\n    fillOpacity: \"0.1\",\n    fill: \"#000000\"\n  }));\n});\nconst Pointing = forwardRef((props, ref) => {\n  const { skin, clothes, clothes2 } = props;\n  return /* @__PURE__ */ React.createElement(\"g\", {\n    id: \"Body/Pointing-Forward\",\n    stroke: \"none\",\n    strokeWidth: \"1\",\n    fill: \"none\",\n    fillRule: \"evenodd\"\n  }, /* @__PURE__ */ React.createElement(\"path\", {\n    d: \"M158.638039,42.7002327 L193.347821,23.6898218 C199.119845,16.8355222 204.806897,11.5121983 210.408976,7.71984988 C212.120791,7.00519513 215.114322,6.57263502 212.314801,11.541507 C209.515281,16.510379 206.794075,21.8627914 208.22032,23.3935933 C209.646565,24.9243953 213.203036,22.7859324 214.904525,25.3293729 C216.038851,27.0249998 209.962902,29.703613 196.676679,33.3652124 L171.455792,56.4576422 L158.638039,42.7002327 Z M213,58.7398397 L228.246523,50.3642065 C230.385826,42.2239107 232.943102,38.1282526 235.918351,38.0772323 C238.203961,37.0137608 234.223587,47.2997848 238.556381,46.4077826 C242.889175,45.5157805 253.464286,37.6506887 255.286431,39.2475996 C257.982176,41.6101262 255.578484,48.864452 252.746364,52.4730906 C247.453134,59.2176317 243.070569,61.5240612 232.238377,64.5443446 C226.574749,66.1235046 220.451364,69.288795 213.868224,74.0402157 L213,58.7398397 Z\",\n    id: \"Skin\",\n    fill: skin\n  }), /* @__PURE__ */ React.createElement(\"path\", {\n    d: \"M142.857986,34.7503025 C154.885997,36.5253162 171.300289,36.5253162 190.103565,28.3861499 L194.443447,44.4123074 C180.805809,54.2415559 162.712714,61.226516 148.287694,58.5246963 C136.919984,56.3955135 133.271725,41.6595451 142.857986,34.7503025 Z\",\n    id: \"Sleeve\",\n    fill: \"#2026A2\",\n    transform: \"translate(165.898282, 43.748060) rotate(-9.000000) translate(-165.898282, -43.748060) \"\n  }), /* @__PURE__ */ React.createElement(\"path\", {\n    d: \"M158.104267,62.7612342 C171.011057,65.9801048 192.654946,62.184167 223.035933,51.3734208 C230.571674,66.9635189 234.055257,78.0780631 233.486685,84.7170535 C207.424274,98.3310492 185.086537,104.400834 166.683227,104.801533 C167.268059,115.72137 165.938918,126.111847 161.473933,135.605966 C152.29468,155.124265 98.5450578,137.048144 80.4727876,140.605966 C69.1554006,103.85132 91.0379108,88.9143806 91.0555178,65.3966157 C91.0747993,39.6421572 111.75441,-1.42108547e-13 114.797001,-1.42108547e-13 L142.54375,1.15166749e-13 C144.0747,19.6690193 151.7804,41.3459827 158.104267,62.7612342 Z\",\n    id: \"Clothes\",\n    fill: \"#1F28CF\"\n  }));\n});\nconst Pointing2 = forwardRef((props, ref) => {\n  const { skin, clothes, clothes2 } = props;\n  return /* @__PURE__ */ React.createElement(\"g\", {\n    id: \"Body/Pointing-Up\",\n    stroke: \"none\",\n    strokeWidth: \"1\",\n    fill: \"none\",\n    fillRule: \"evenodd\"\n  }, /* @__PURE__ */ React.createElement(\"path\", {\n    d: \"M191.456243,2.34082269 L229.360019,-9.03759567 C236.431,-14.5420411 243.100557,-18.5666331 249.36869,-21.1113719 C251.191683,-21.4545034 254.209733,-21.2552209 250.438302,-16.9769837 C246.666871,-12.6987465 242.892301,-8.02906778 243.969107,-6.23518449 C245.045914,-4.44130119 248.969279,-5.79360164 250.104775,-2.95198204 C250.861773,-1.05756897 244.361683,0.299249329 230.604506,1.11847287 L201.133571,18.4625605 L191.456243,2.34082269 Z M188.106855,69.1681252 L220.005126,92.5917238 C228.656594,94.9262021 235.884616,97.8306872 241.689192,101.305179 C243.060333,102.554584 244.717486,105.084837 239.031031,104.647546 C233.344575,104.210255 227.34361,104.006032 226.55899,105.945594 C225.774369,107.885156 229.215504,110.204659 227.629445,112.821636 C226.572072,114.566288 221.576617,110.191639 212.64308,99.6976902 L181.055424,86.5990869 L188.106855,69.1681252 Z\",\n    id: \"Skin\",\n    fill: skin\n  }), /* @__PURE__ */ React.createElement(\"path\", {\n    d: \"M126.984936,15.649923 C152.146796,42.4399518 182.83581,59.9216266 224.690767,75.4277614 L215.396057,94.0136202 C172.211363,89.9419212 149.124049,86.6900124 131.024869,59.8586619 C126.482342,53.1245369 118.360034,29.953677 113.494175,17.9210142 L126.984936,15.649923 Z\",\n    id: \"Coat-Back\",\n    fill: \"#2026A2\",\n    transform: \"translate(169.092471, 54.831772) rotate(15.000000) translate(-169.092471, -54.831772) \"\n  }), /* @__PURE__ */ React.createElement(\"path\", {\n    d: \"M90,114 L167,114 C149.558211,60.8053811 140.648283,24.2959016 140.270216,4.47156148 C140.250941,3.46089747 138.384379,1.67996472 137.55857,1.91319372 C131.519523,3.61877223 125.057267,2.98104099 118.1718,0 C99.917485,29.3584068 93.6048263,65.5045499 90,114 Z\",\n    id: \"Shirt\",\n    fill: \"#F2F2F2\"\n  }), /* @__PURE__ */ React.createElement(\"path\", {\n    d: \"M124.742502,0.0473953679 C146.814238,0.228130238 182.624,4.25865631 223.922675,-9 L228,11.3734803 C196.78685,31.4482286 165.18092,46.9990656 137.486251,44.790754 C149.512444,96.3770989 148.957979,138.605966 122.407472,138.605966 C109.728284,138.605966 96.0428359,138.605966 81.3511268,138.605966 C74.8304314,94.783947 91.9680949,34.0236152 107.855955,3.37659428 C108.462665,2.20627687 109.75441,-3.65929509e-13 112.797001,-3.65929509e-13 C115.448059,-3.65929509e-13 119.424647,-3.65929509e-13 124.726763,-3.65929509e-13 C124.73201,0.0157984696 124.737257,0.0315969258 124.742502,0.0473953679 Z\",\n    id: \"Coat-Front\",\n    fill: \"#1F28CF\"\n  }));\n});\nconst Pregnant = forwardRef((props, ref) => {\n  const { skin, clothes, clothes2 } = props;\n  return /* @__PURE__ */ React.createElement(\"g\", {\n    id: \"Body/Pregnant\",\n    stroke: \"none\",\n    strokeWidth: \"1\",\n    fill: \"none\",\n    fillRule: \"evenodd\"\n  }, /* @__PURE__ */ React.createElement(\"path\", {\n    d: \"M111.093239,2.28693343 C111.326698,1.52679592 111.563732,0.764490814 111.80423,9.9475983e-14 L112.692183,0.417788314 C112.830751,0.274814904 112.970357,0.135528873 113.111009,-8.52651283e-14 L141.101479,4.32798224 C141.101479,20.0687681 153.625725,34.7964415 161.54868,47.4680378 C173.864991,67.1661596 195.780651,88.999709 181.72922,118.263682 C169.06816,144.632022 136.088855,148.914077 82.7913029,131.10985 C82.7913029,116.907461 94.4646183,102.629645 94.8366189,85.3605479 C95.1907472,68.9211259 98.2646207,19.1125342 111.093239,2.28693343 Z\",\n    id: \"Shirt\",\n    fill: \"#C1DEE2\"\n  }), /* @__PURE__ */ React.createElement(\"path\", {\n    d: \"M145.863007,110.787221 C147.734877,101.126929 148.949202,94.6776016 149.505985,91.4392393 C164.417959,108.29011 173.032716,116.813278 175.350255,117.008742 C179.708836,117.37635 182.929474,113.51125 183.84651,114.597847 C185.362212,119.097853 181.081226,130.362106 172.89821,132 C168.990655,132.782127 162.94394,124.724092 160.45259,121.868948 C159.4727,120.745971 154.609505,117.052062 145.863007,110.787221 Z M171.62123,59.2823205 C175.486784,59.2823205 177.563178,60.8804131 179.848781,64.1046411 C182.134384,67.328869 184.297191,82.5350373 180.6276,82.5350373 C176.958008,82.5350373 161.583419,76.656821 161.583419,72.7050102 C161.583419,68.7531993 172.074145,67.079644 172.074145,64.1046411 C172.074145,61.1296381 167.755676,59.2823205 171.62123,59.2823205 Z\",\n    id: \"Skin\",\n    fill: skin\n  }), /* @__PURE__ */ React.createElement(\"path\", {\n    d: \"M138.059083,125.487626 C137.829455,126.309648 137.595361,127.147106 137.356799,128 C93.560817,97.3905148 93.5398055,60.2964284 106.564993,18.7185807 C96.7475495,59.6508736 100.747151,94.1732973 138.059083,125.487626 Z\",\n    id: \"Shade\",\n    fillOpacity: \"0.2\",\n    fill: \"#000000\"\n  }));\n});\nconst Trench = forwardRef((props, ref) => {\n  const { skin, clothes, clothes2 } = props;\n  return /* @__PURE__ */ React.createElement(\"g\", {\n    id: \"Body/Trench-Coat\",\n    stroke: \"none\",\n    strokeWidth: \"1\",\n    fill: \"none\",\n    fillRule: \"evenodd\"\n  }, /* @__PURE__ */ React.createElement(\"path\", {\n    d: \"M197.692975,90.2442388 L227.879596,115.83589 C236.347145,118.768177 243.354953,122.169788 248.90302,126.040723 C250.183668,127.382731 251.660283,130.022417 246.018183,129.189525 C240.376083,128.356632 234.403982,127.734299 233.485976,129.614404 C232.56797,131.49451 235.838922,134.048404 234.074175,136.548369 C232.897677,138.215012 228.219551,133.502554 220.039797,122.410996 L189.442799,107.140857 L197.692975,90.2442388 Z M54.3748075,70.4422362 L71.7206892,74.8517457 C48.5010655,113.888004 36.0840272,134.518222 34.4695742,136.742401 C30.8370549,141.746803 33.4753713,151.405575 34.3717289,156.466114 C27.0159775,157.777312 30.4552622,146.986888 21.1392043,148.78923 C12.6359386,150.434324 5.23841582,155.412199 -2.21044035,147.785504 C-3.12623345,146.847846 -3.68533756,144.037711 -0.329858103,142.787288 C8.0298649,139.672029 20.4540206,133.669529 22.5472206,131.196025 C25.4016727,127.82296 36.0108683,107.571697 54.3748075,70.4422362 Z\",\n    id: \"Skin\",\n    fill: skin,\n    transform: \"translate(123.586250, 113.509597) rotate(-4.000000) translate(-123.586250, -113.509597) \"\n  }), /* @__PURE__ */ React.createElement(\"path\", {\n    d: \"M203.320455,87.6779032 C207.424546,87.3832636 211.888791,88.063152 216.675075,89.6758318 C219.030261,90.4693828 220.296216,93.0219384 219.502665,95.3771242 C219.041777,96.7449968 217.987543,97.7454511 216.723241,98.1883982 C217.639067,98.8565328 218.563007,99.520979 219.495159,100.181671 L211.447983,116.609623 C177.58505,99.7255288 145.757134,86.9958405 131.253857,59.1215578 C126.386182,49.766228 128.033751,17.9882599 127.569134,6.42756866 L138.264162,2.04144427 C153.172616,32.858252 173.349023,62.4232387 203.320455,87.6779032 Z\",\n    id: \"Back-Arm\",\n    fill: \"#69A1AC\"\n  }), /* @__PURE__ */ React.createElement(\"path\", {\n    d: \"M90,113.909745 C121.438326,117.363418 146.183737,117.363418 164.236234,113.909745 C166.472817,113.481858 166.374598,103.840401 165.337385,101.207228 C149.185283,60.2018743 138.560302,30.1840325 138.560302,1.70263734 C135.596594,3.25072994 130.409827,3.48273097 123,2.39864042 C103.086202,31.7496339 93.9325378,65.4265407 90,113.909745 Z\",\n    id: \"Shirt\",\n    fill: \"#191847\"\n  }), /* @__PURE__ */ React.createElement(\"path\", {\n    d: \"M84.1585766,118.757813 C83.0909039,117.753244 82.5343141,116.247337 82.8078928,114.695795 L83.3288374,111.741372 C83.6818668,109.739242 85.3079057,108.281318 87.2277662,108.053234 C87.5633833,106.552966 87.8527505,105.062753 88.0917371,103.583451 C90.1105318,91.0873271 86.6613147,78.8344715 86.8233023,66.8021056 C70.7431982,80.5215474 56.3180804,104.211193 43.5479488,137.871041 L24.6611622,132.313477 C25.3818,129.636227 26.1282539,126.991859 26.9005241,124.380374 C24.7206054,123.141961 22.1733635,117.465977 24.0066041,116.516161 C25.8999362,115.53521 27.9056982,114.844785 30.0179817,114.438414 C47.3353888,62.2791261 75.6546193,24.1329883 114.975674,-4.19220214e-13 L120.377288,-4.12114787e-13 L126.348425,-1.0658141e-14 C123,44.2807404 169.249642,140.9549 153.190593,223.518112 C123.507857,230.146789 81.1319105,209.522766 39.8828129,226 C41.4176928,192.750911 72.1631413,153.690797 84.1585803,118.757804 Z\",\n    id: \"Coat-Front\",\n    fill: \"#89C5CC\"\n  }), /* @__PURE__ */ React.createElement(\"polygon\", {\n    id: \"Shade-Lapel\",\n    fillOpacity: \"0.1\",\n    fill: \"#000000\",\n    points: \"119.105759 1 113.946604 16.8654451 124.335997 28.7590435 114.946604 38.1055065 137.662251 77 109.883587 38.1832119 119.105759 28.7590435 109.883587 18.2484583\"\n  }), /* @__PURE__ */ React.createElement(\"path\", {\n    d: \"M131,92 C128.790861,92 127,90.209139 127,88 C127,85.790861 128.790861,84 131,84 C133.209139,84 135,85.790861 135,88 C135,90.209139 133.209139,92 131,92 Z M136,115 C133.790861,115 132,113.209139 132,111 C132,108.790861 133.790861,107 136,107 C138.209139,107 140,108.790861 140,111 C140,113.209139 138.209139,115 136,115 Z M137,138 C134.790861,138 133,136.209139 133,134 C133,131.790861 134.790861,130 137,130 C139.209139,130 141,131.790861 141,134 C141,136.209139 139.209139,138 137,138 Z\",\n    id: \"Buttons\",\n    fillOpacity: \"0.4\",\n    fill: \"#000000\"\n  }));\n});\nconst Turtle = forwardRef((props, ref) => {\n  const { skin, clothes, clothes2 } = props;\n  return /* @__PURE__ */ React.createElement(\"g\", {\n    id: \"Body/Turtle-Neck\",\n    stroke: \"none\",\n    strokeWidth: \"1\",\n    fill: \"none\",\n    fillRule: \"evenodd\"\n  }, /* @__PURE__ */ React.createElement(\"path\", {\n    d: \"M199.493124,92.4603344 L227.821028,120.095357 C236.063404,123.611168 242.816857,127.493333 248.081387,131.741853 C249.265301,133.169925 250.554184,135.906184 244.983927,134.681747 C239.413671,133.45731 233.49953,132.419902 232.45261,134.23139 C231.405691,136.042878 234.490525,138.818722 232.555688,141.189494 C231.265796,142.770009 226.92779,137.742701 219.54167,126.10757 L190.084396,108.74029 L199.493124,92.4603344 Z M60.9697919,67.4496834 L82.8671837,67.5318631 C66.1894326,121.56567 57.3363474,149.856914 56.3079281,152.405597 C53.9939846,158.140133 58.8906002,166.873732 60.9845874,171.567103 C54.1645409,174.61887 54.8912241,163.316929 46.2879189,167.319492 C38.4352209,170.972846 32.4616931,177.59248 23.3890352,171.994371 C22.2736052,171.306117 21.0512757,168.714714 24.0045784,166.68967 C31.3623323,161.644547 41.9653015,152.814672 43.3979297,149.908251 C45.3515741,145.944826 51.2088615,118.458637 60.9697919,67.4496834 Z\",\n    id: \"Skin\",\n    fill: skin\n  }), /* @__PURE__ */ React.createElement(\"path\", {\n    d: \"M122.768272,9.7139848 L131.253224,7.48281413 C149.019938,54.2642227 221.602897,80.8616426 227.451896,98.4190631 C229.596879,104.857833 225.154909,108.596168 227.774893,110.385298 L217.29519,119.561394 C215.205566,117.515062 211.513381,121.915723 202.815928,119.824345 C194.118475,117.732967 127.737533,66.5128914 122.768272,9.7139848 Z\",\n    id: \"Clothes-Back\",\n    fill: \"#DB2721\",\n    transform: \"translate(175.413267, 63.943241) rotate(5.000000) translate(-175.413267, -63.943241) \"\n  }), /* @__PURE__ */ React.createElement(\"path\", {\n    d: \"M142.240708,11.7336597 C141.243756,75.4830742 178.095832,91.7445602 169.887262,117.318245 C163.108761,138.436573 98.2273311,161.138686 87,140.43774 C82.4553197,132.058262 80.3933796,121.923875 80.1594269,110.905608 C77.2899563,119.370535 75.0205237,126.657823 73.3511268,132.767479 C70.4711839,143.30749 59.3062598,144.982871 59.3062598,149.043262 L44.5966299,144.982871 C45.5943495,139.466662 38.6598745,136.780597 40.5191881,124.456905 C48.8500046,69.239525 71.2334081,29.2141817 107.669398,4.38087468 L108.046347,-1.0097438 C108.200449,-3.21350145 110.111872,-4.87507585 112.315629,-4.72097411 L139.249859,-2.83754931 C141.453616,-2.68344757 143.115191,-0.772024866 142.961089,1.43173278 L142.240708,11.7336597 Z\",\n    id: \"Clothes-Front\",\n    fill: \"#FF4133\"\n  }));\n});\nexport {\n  Hoodie,\n  Jacket,\n  Jacket2,\n  Lab,\n  Long,\n  Pointing,\n  Pointing2,\n  Pregnant,\n  Trench,\n  Turtle\n};\n", "import * as React from \"react\";\nimport { forwardRef } from \"react\";\nconst Baggy = forwardRef((props, ref) => {\n  const { skin } = props;\n  return /* @__PURE__ */ React.createElement(\"g\", {\n    id: \"Bottom/Sitting/Baggy-Pants\",\n    stroke: \"none\",\n    strokeWidth: \"1\",\n    fill: \"none\",\n    fillRule: \"evenodd\"\n  }, /* @__PURE__ */ React.createElement(\"g\", {\n    id: \"Objects/Seat/Cube-2\",\n    transform: \"translate(10.000000, 42.000000)\",\n    fill: \"#C5CFD6\"\n  }, /* @__PURE__ */ React.createElement(\"path\", {\n    d: \"M59,0 L174,0 C182.836556,-1.623249e-15 190,7.163444 190,16 L190,108 C190,116.836556 182.836556,124 174,124 L59,124 C50.163444,124 43,116.836556 43,108 L43,16 C43,7.163444 50.163444,1.623249e-15 59,0 Z M75,28 C72.790861,28 71,29.790861 71,32 L71,92 C71,94.209139 72.790861,96 75,96 L158,96 C160.209139,96 162,94.209139 162,92 L162,32 C162,29.790861 160.209139,28 158,28 L75,28 Z\",\n    id: \"Seat\"\n  })), /* @__PURE__ */ React.createElement(\"path\", {\n    d: \"M299.158964,161 C279.443095,136.924175 266.102867,119.075435 259.13828,107.453779 C247.213216,87.5546842 237.453121,69.8481647 234.373078,63.0843539 C227.028322,46.9551796 251.281896,39.4026181 256.77103,46.9258 C265.079054,58.3124345 282.822044,94.1429674 310,154.417399 L299.158964,161 Z\",\n    id: \"LegLower\",\n    fill: skin\n  }), /* @__PURE__ */ React.createElement(\"path\", {\n    d: \"M258.757567,154 L222.065197,61.6367769 C214.217429,44.7995771 252.115758,33.7320765 257.883274,41.5677718 C270.977322,59.3572261 302.098846,129.534043 306,134.834115 L258.757567,154 Z\",\n    id: \"LegLower\",\n    fill: \"#2F3676\"\n  }), /* @__PURE__ */ React.createElement(\"g\", {\n    id: \"Lower-Leg\",\n    transform: \"translate(220.172961, 98.499284) rotate(39.000000) translate(-220.172961, -98.499284) translate(192.672961, 26.499284)\",\n    fill: skin\n  }, /* @__PURE__ */ React.createElement(\"path\", {\n    d: \"M4.8104618,137.955033 C3.80382537,125.354418 1.93361965,81.7337126 3.80483649,61.543304 C4.34254917,55.7413902 4.90906557,50.1318704 5.47997786,44.8696433 C7.17693121,29.2284421 36.1790278,29.7228704 33.8758977,44.5827954 C28.1401936,81.5898816 18.0447004,133.45317 17.3211185,137.93445 C16.3069876,144.215156 5.44310141,145.874127 4.8104618,137.955033 Z\",\n    id: \"LegLower\"\n  })), /* @__PURE__ */ React.createElement(\"g\", {\n    id: \"Accessories/Shoe/Flat-Sneaker\",\n    transform: \"translate(189.500000, 140.000000) rotate(30.000000) translate(-189.500000, -140.000000) translate(159.000000, 120.000000)\",\n    fill: \"#E4E4E4\"\n  }, /* @__PURE__ */ React.createElement(\"path\", {\n    d: \"M2.67813181,25.4019242 C1.55937727,28.3884109 1,30.6229931 1,32.1056708 C1,33.908957 1.3004142,36.5404001 1.90124261,40 C3.99318117,40 22.7937852,40 58.3030548,40 C59.768738,35.1545073 58.9226607,32.5385816 55.7648228,32.1522232 C52.606985,31.7658647 49.9837155,31.4170139 47.8950143,31.1056708 L21.6799926,19.4188835 C21.1755635,19.1940064 20.584344,19.4206282 20.359467,19.9250573 C20.35562,19.9336867 20.3518954,19.9423702 20.3482945,19.9511052 L18.6632131,24.038695 C15.7398812,25.4026522 13.3643706,26.0846307 11.5366811,26.0846307 C10.0517269,26.0846307 8.00099246,25.4849054 5.38447792,24.2854549 L5.38448339,24.285443 C4.38038273,23.8251478 3.19325534,24.2659892 2.73296014,25.2700899 C2.71312074,25.3133681 2.69483298,25.3573409 2.67813181,25.4019242 Z\",\n    id: \"shoe\"\n  })), /* @__PURE__ */ React.createElement(\"g\", {\n    id: \"Accessories/Shoe/Flat-Sneaker\",\n    transform: \"translate(288.000000, 132.000000)\",\n    fill: \"#E4E4E4\"\n  }, /* @__PURE__ */ React.createElement(\"path\", {\n    d: \"M2.67813181,25.4019242 C1.55937727,28.3884109 1,30.6229931 1,32.1056708 C1,33.908957 1.3004142,36.5404001 1.90124261,40 C3.99318117,40 22.7937852,40 58.3030548,40 C59.768738,35.1545073 58.9226607,32.5385816 55.7648228,32.1522232 C52.606985,31.7658647 49.9837155,31.4170139 47.8950143,31.1056708 L21.6799926,19.4188835 C21.1755635,19.1940064 20.584344,19.4206282 20.359467,19.9250573 C20.35562,19.9336867 20.3518954,19.9423702 20.3482945,19.9511052 L18.6632131,24.038695 C15.7398812,25.4026522 13.3643706,26.0846307 11.5366811,26.0846307 C10.0517269,26.0846307 8.00099246,25.4849054 5.38447792,24.2854549 L5.38448339,24.285443 C4.38038273,23.8251478 3.19325534,24.2659892 2.73296014,25.2700899 C2.71312074,25.3133681 2.69483298,25.3573409 2.67813181,25.4019242 Z\",\n    id: \"shoe\"\n  })), /* @__PURE__ */ React.createElement(\"path\", {\n    d: \"M208.862091,66.2500522 C178.365272,61.2817352 157.938089,57.8844191 147.580542,56.0581041 C118.057451,50.8523866 109.448266,34.9653306 114.538476,0.302228659 L168.93427,0.302228659 C176.132679,2.38099361 206.210425,15.2374805 259.167508,38.8716893 C268.695532,43.6015333 266.921101,57.5474982 265.179547,62.1420768 C265.10852,62.3294612 249.046098,89.8530148 216.99228,144.712738 L172.494227,116.36549 L208.945659,69.5903876 C209.908306,67.6514874 209.88045,66.5380423 208.862091,66.2500522 Z\",\n    id: \"Leg-and-Butt\",\n    fill: \"#5C63AB\"\n  }));\n});\nconst Skinny = forwardRef((props, ref) => {\n  const { skin } = props;\n  return /* @__PURE__ */ React.createElement(\"g\", {\n    id: \"Bottom/Sitting/Skinny-Jeans-1\",\n    stroke: \"none\",\n    strokeWidth: \"1\",\n    fill: \"none\",\n    fillRule: \"evenodd\"\n  }, /* @__PURE__ */ React.createElement(\"g\", {\n    id: \"Objects/Seat/Cube\",\n    transform: \"translate(10.000000, 42.000000)\"\n  }, /* @__PURE__ */ React.createElement(\"g\", {\n    id: \"Seat\",\n    transform: \"translate(55.000000, 0.000000)\"\n  }, /* @__PURE__ */ React.createElement(\"polygon\", {\n    id: \"Seat-Stuff\",\n    fill: \"#C5CFD6\",\n    points: \"27.6226415 0 104.877193 0 115 124 0 124\"\n  }), /* @__PURE__ */ React.createElement(\"polygon\", {\n    id: \"Seat-Stuff\",\n    fillOpacity: \"0.1\",\n    fill: \"#000000\",\n    points: \"27.6226415 0 51.3828011 0 65.6037736 124 0 124\"\n  }))), /* @__PURE__ */ React.createElement(\"path\", {\n    d: \"M257.953294,20.7561262 C266.190093,15.8101469 280.009488,22.164715 280,29.2384154 C279.971611,50.4029106 260.656682,150.1511 259.648224,156.456711 C258.639766,162.762321 247.83665,164.42787 247.20755,156.477375 C246.206544,143.826795 244.3468,100.033121 246.20755,79.7626522 C246.975628,71.3954284 247.802807,63.4267637 248.617148,56.3175946 C238.481902,74.6206031 222.807229,100.825998 201.593128,134.933778 L190.076573,129.672175 C199.120166,99.8760987 206.535776,78.8408618 212.323403,66.5664641 C222.233227,45.5497154 231.525307,27.551672 235.436043,21.2120072 C241.587634,11.2397104 252.295462,14.7191925 257.953294,20.7561262 Z\",\n    id: \"Skin\",\n    fill: skin\n  }), /* @__PURE__ */ React.createElement(\"path\", {\n    d: \"M208.819223,123.340112 L213.936922,21.8299349 C217.625361,4.27739957 248.84365,12.4235349 248.830812,21.8299349 C248.801666,43.1853748 235.973522,116.956762 235.964839,123.319261 L208.819223,123.340112 Z\",\n    id: \"LegLower\",\n    fill: \"#1F28CF\",\n    transform: \"translate(228.825019, 67.419630) rotate(20.000000) translate(-228.825019, -67.419630) \"\n  }), /* @__PURE__ */ React.createElement(\"g\", {\n    id: \"Accessories/Shoe/Flat-Sneaker\",\n    transform: \"translate(215.500000, 133.000000) rotate(30.000000) translate(-215.500000, -133.000000) translate(185.000000, 113.000000)\",\n    fill: \"#E4E4E4\"\n  }, /* @__PURE__ */ React.createElement(\"path\", {\n    d: \"M2.67813181,25.4019242 C1.55937727,28.3884109 1,30.6229931 1,32.1056708 C1,33.908957 1.3004142,36.5404001 1.90124261,40 C3.99318117,40 22.7937852,40 58.3030548,40 C59.768738,35.1545073 58.9226607,32.5385816 55.7648228,32.1522232 C52.606985,31.7658647 49.9837155,31.4170139 47.8950143,31.1056708 L21.6799926,19.4188835 C21.1755635,19.1940064 20.584344,19.4206282 20.359467,19.9250573 C20.35562,19.9336867 20.3518954,19.9423702 20.3482945,19.9511052 L18.6632131,24.038695 C15.7398812,25.4026522 13.3643706,26.0846307 11.5366811,26.0846307 C10.0517269,26.0846307 8.00099246,25.4849054 5.38447792,24.2854549 L5.38448339,24.285443 C4.38038273,23.8251478 3.19325534,24.2659892 2.73296014,25.2700899 C2.71312074,25.3133681 2.69483298,25.3573409 2.67813181,25.4019242 Z\",\n    id: \"shoe\"\n  })), /* @__PURE__ */ React.createElement(\"g\", {\n    id: \"Accessories/Shoe/Flat-Sneaker\",\n    transform: \"translate(242.000000, 126.000000)\",\n    fill: \"#E4E4E4\"\n  }, /* @__PURE__ */ React.createElement(\"path\", {\n    d: \"M2.67813181,25.4019242 C1.55937727,28.3884109 1,30.6229931 1,32.1056708 C1,33.908957 1.3004142,36.5404001 1.90124261,40 C3.99318117,40 22.7937852,40 58.3030548,40 C59.768738,35.1545073 58.9226607,32.5385816 55.7648228,32.1522232 C52.606985,31.7658647 49.9837155,31.4170139 47.8950143,31.1056708 L21.6799926,19.4188835 C21.1755635,19.1940064 20.584344,19.4206282 20.359467,19.9250573 C20.35562,19.9336867 20.3518954,19.9423702 20.3482945,19.9511052 L18.6632131,24.038695 C15.7398812,25.4026522 13.3643706,26.0846307 11.5366811,26.0846307 C10.0517269,26.0846307 8.00099246,25.4849054 5.38447792,24.2854549 L5.38448339,24.285443 C4.38038273,23.8251478 3.19325534,24.2659892 2.73296014,25.2700899 C2.71312074,25.3133681 2.69483298,25.3573409 2.67813181,25.4019242 Z\",\n    id: \"shoe\"\n  })), /* @__PURE__ */ React.createElement(\"path\", {\n    d: \"M282.770373,36.4330278 C282.770373,63 270.1536,124.970293 270.145616,130.820112 L243,130.840963 C246.973277,75.5454811 248.382172,47.5998928 247.226683,47.0041979 C245.49345,46.1106556 176.175838,53.9250306 155.386358,53.9250306 C125.407825,53.9250306 113.006307,35.0203971 112,-4.40536496e-13 L171.386358,-4.40536496e-13 C183.477954,1.29386693 246.548825,14.0152568 269.972097,18.3884129 C280,20.2606358 282.770373,29.1145109 282.770373,36.4330278 Z\",\n    id: \"Leg-and-Butt\",\n    fill: \"#2B44FF\"\n  }));\n});\nconst Sweat = forwardRef((props, ref) => {\n  const { skin } = props;\n  return /* @__PURE__ */ React.createElement(\"g\", {\n    id: \"Bottom/Sitting/Sweat-Pants\",\n    stroke: \"none\",\n    strokeWidth: \"1\",\n    fill: \"none\",\n    fillRule: \"evenodd\"\n  }, /* @__PURE__ */ React.createElement(\"g\", {\n    id: \"Objects/Seat/Ball\",\n    transform: \"translate(10.000000, 42.000000)\",\n    fill: \"#C5CFD6\"\n  }, /* @__PURE__ */ React.createElement(\"ellipse\", {\n    id: \"Ballsy-Ball\",\n    cx: \"116\",\n    cy: \"58.5\",\n    rx: \"77\",\n    ry: \"73.5\"\n  })), /* @__PURE__ */ React.createElement(\"path\", {\n    d: \"M271.509253,162.659849 C258.696468,134.301545 249.430392,109.608281 245.711023,96.5800564 C239.34256,74.2725728 234.497817,54.6432898 233.273327,47.3127766 C230.353374,29.8322277 255.735275,28.8143004 259.090229,37.5018287 C264.168086,50.6507477 273.032873,93.8526085 283.684593,159.107411 L271.509253,162.659849 Z M122.888346,73.6635414 C134.644063,69.0168268 175.811956,54.4748802 195.66723,50.3612296 C201.37284,49.1791314 206.902884,48.0808288 212.102095,47.0882686 C227.555991,44.1380286 235.56256,72.0174283 220.678573,74.1595557 C183.611563,79.4942994 131.062816,85.0032894 126.565792,85.6215241 C120.26302,86.4880065 115.500245,76.5838567 122.888346,73.6635414 Z\",\n    id: \"Skin\",\n    fill: skin\n  }), /* @__PURE__ */ React.createElement(\"path\", {\n    d: \"M221.587121,39.4162575 L158,7.04671741 L158,0 L165.562186,0 C227.079876,15.6757222 258.515366,25.7216696 259.868655,30.1378423 C259.883215,30.1853551 259.896564,30.2329302 259.908703,30.2805675 C259.939662,30.3212022 259.970097,30.3620825 260,30.4032083 C272.191506,47.1700257 279.49295,129.026966 281.889416,135.156136 L258.52773,138.641377 C249.591265,105.503295 221,82.4181007 221.759487,42.7290106 C221.554409,41.5647756 221.502591,40.4606967 221.587121,39.4162575 Z\",\n    id: \"Leg-Back\",\n    fill: \"#1F28CF\"\n  }), /* @__PURE__ */ React.createElement(\"path\", {\n    d: \"M163.283174,58.6404762 C157.4651,57.4758245 152.107279,56.4363908 147.522705,55.6322592 C117.90929,50.4380832 109.273766,34.5862504 114.379549,4.7745025e-14 L168.941763,-4.97379915e-14 C177.854593,2.56031807 224.174037,21.9848377 248.206622,32.316337 C264.112618,39.1542526 259.098531,63.8044803 250.090957,70.2194819 C250.042044,70.6130299 249.879937,70.8803556 249.591265,71 C201.136867,91.0826527 162.804991,80.5453361 150,83.9121674 L144.07712,65.2284164 L163.283174,58.6404762 Z\",\n    id: \"Leg-Front\",\n    fill: \"#2B44FF\"\n  }), /* @__PURE__ */ React.createElement(\"g\", {\n    id: \"Accessories/Shoe/Flat-Sneaker\",\n    transform: \"translate(143.959294, 93.331820) rotate(64.000000) translate(-143.959294, -93.331820) translate(113.459294, 73.331820)\",\n    fill: \"#E4E4E4\"\n  }, /* @__PURE__ */ React.createElement(\"path\", {\n    d: \"M2.67813181,25.4019242 C1.55937727,28.3884109 1,30.6229931 1,32.1056708 C1,33.908957 1.3004142,36.5404001 1.90124261,40 C3.99318117,40 22.7937852,40 58.3030548,40 C59.768738,35.1545073 58.9226607,32.5385816 55.7648228,32.1522232 C52.606985,31.7658647 49.9837155,31.4170139 47.8950143,31.1056708 L21.6799926,19.4188835 C21.1755635,19.1940064 20.584344,19.4206282 20.359467,19.9250573 C20.35562,19.9336867 20.3518954,19.9423702 20.3482945,19.9511052 L18.6632131,24.038695 C15.7398812,25.4026522 13.3643706,26.0846307 11.5366811,26.0846307 C10.0517269,26.0846307 8.00099246,25.4849054 5.38447792,24.2854549 L5.38448339,24.285443 C4.38038273,23.8251478 3.19325534,24.2659892 2.73296014,25.2700899 C2.71312074,25.3133681 2.69483298,25.3573409 2.67813181,25.4019242 Z\",\n    id: \"shoe\"\n  })), /* @__PURE__ */ React.createElement(\"g\", {\n    id: \"Accessories/Shoe/Flat-Sneaker\",\n    transform: \"translate(263.000000, 132.000000)\",\n    fill: \"#E4E4E4\"\n  }, /* @__PURE__ */ React.createElement(\"path\", {\n    d: \"M2.67813181,25.4019242 C1.55937727,28.3884109 1,30.6229931 1,32.1056708 C1,33.908957 1.3004142,36.5404001 1.90124261,40 C3.99318117,40 22.7937852,40 58.3030548,40 C59.768738,35.1545073 58.9226607,32.5385816 55.7648228,32.1522232 C52.606985,31.7658647 49.9837155,31.4170139 47.8950143,31.1056708 L21.6799926,19.4188835 C21.1755635,19.1940064 20.584344,19.4206282 20.359467,19.9250573 C20.35562,19.9336867 20.3518954,19.9423702 20.3482945,19.9511052 L18.6632131,24.038695 C15.7398812,25.4026522 13.3643706,26.0846307 11.5366811,26.0846307 C10.0517269,26.0846307 8.00099246,25.4849054 5.38447792,24.2854549 L5.38448339,24.285443 C4.38038273,23.8251478 3.19325534,24.2659892 2.73296014,25.2700899 C2.71312074,25.3133681 2.69483298,25.3573409 2.67813181,25.4019242 Z\",\n    id: \"shoe\"\n  })));\n});\nconst Wheelchair = forwardRef((props, ref) => {\n  const { skin } = props;\n  return /* @__PURE__ */ React.createElement(\"g\", {\n    id: \"Bottom/Sitting/Wheelchair\",\n    stroke: \"none\",\n    strokeWidth: \"1\",\n    fill: \"none\",\n    fillRule: \"evenodd\"\n  }, /* @__PURE__ */ React.createElement(\"path\", {\n    d: \"M254.883773,18.0957316 C262.063646,8.35806555 280.010812,14.8042773 280,22.8655557 C279.971611,44.0311277 260.656682,144.512004 259.648224,150.855869 C258.639766,157.199734 247.83665,159.275085 247.20755,151.348454 C246.206544,138.735846 244.3468,95.012719 246.20755,74.6716648 C246.751065,68.7301478 247.324175,62.9870828 247.901388,57.6067645 C237.750194,75.8431618 222.314107,101.618833 201.593128,134.933778 L190.076573,129.672175 C199.120166,99.8760987 206.535776,78.8408618 212.323403,66.5664641 C222.233227,45.5497154 231.525307,27.551672 235.436043,21.2120072 C240.601842,12.8377695 248.98061,13.9494614 254.883773,18.0957316 Z\",\n    id: \"Skin\",\n    fill: skin\n  }), /* @__PURE__ */ React.createElement(\"path\", {\n    d: \"M208.819223,123.340112 L213.936922,21.8299349 C217.625361,4.27739957 248.84365,12.4235349 248.830812,21.8299349 C248.801666,43.1853748 235.973522,116.956762 235.964839,123.319261 L208.819223,123.340112 Z\",\n    id: \"Leg-Back\",\n    fill: \"#1F28CF\",\n    transform: \"translate(228.825019, 67.419630) rotate(20.000000) translate(-228.825019, -67.419630) \"\n  }), /* @__PURE__ */ React.createElement(\"path\", {\n    d: \"M281,30.1765514 C281,56.7177303 269.366261,119.105994 269.358267,124.950436 L241.17615,124 C246.102422,69.7571864 248.179877,42.4520039 247.408516,42.0844525 C245.672952,41.2574617 176.262132,51.6911698 155.444697,52.4790258 C125.425854,53.615118 113.00766,35.1988173 112,0.25055648 L170.147646,0.25055648 C219.869047,6.18567094 252.548003,10.3136421 268.184514,12.63447 C278.225902,14.1248493 281,22.8651399 281,30.1765514 Z\",\n    id: \"Leg-Front\",\n    fill: \"#2B44FF\"\n  }), /* @__PURE__ */ React.createElement(\"g\", {\n    id: \"Accessories/Shoe/Flat-Sneaker\",\n    transform: \"translate(216.820222, 128.225467) rotate(14.000000) translate(-216.820222, -128.225467) translate(186.320222, 108.225467)\",\n    fill: \"#E4E4E4\"\n  }, /* @__PURE__ */ React.createElement(\"path\", {\n    d: \"M2.67813181,25.4019242 C1.55937727,28.3884109 1,30.6229931 1,32.1056708 C1,33.908957 1.3004142,36.5404001 1.90124261,40 C3.99318117,40 22.7937852,40 58.3030548,40 C59.768738,35.1545073 58.9226607,32.5385816 55.7648228,32.1522232 C52.606985,31.7658647 49.9837155,31.4170139 47.8950143,31.1056708 L21.6799926,19.4188835 C21.1755635,19.1940064 20.584344,19.4206282 20.359467,19.9250573 C20.35562,19.9336867 20.3518954,19.9423702 20.3482945,19.9511052 L18.6632131,24.038695 C15.7398812,25.4026522 13.3643706,26.0846307 11.5366811,26.0846307 C10.0517269,26.0846307 8.00099246,25.4849054 5.38447792,24.2854549 L5.38448339,24.285443 C4.38038273,23.8251478 3.19325534,24.2659892 2.73296014,25.2700899 C2.71312074,25.3133681 2.69483298,25.3573409 2.67813181,25.4019242 Z\",\n    id: \"shoe\"\n  })), /* @__PURE__ */ React.createElement(\"g\", {\n    id: \"Accessories/Shoe/Flat-Sneaker\",\n    transform: \"translate(243.000000, 111.000000)\",\n    fill: \"#E4E4E4\"\n  }, /* @__PURE__ */ React.createElement(\"path\", {\n    d: \"M2.67813181,25.4019242 C1.55937727,28.3884109 1,30.6229931 1,32.1056708 C1,33.908957 1.3004142,36.5404001 1.90124261,40 C3.99318117,40 22.7937852,40 58.3030548,40 C59.768738,35.1545073 58.9226607,32.5385816 55.7648228,32.1522232 C52.606985,31.7658647 49.9837155,31.4170139 47.8950143,31.1056708 L21.6799926,19.4188835 C21.1755635,19.1940064 20.584344,19.4206282 20.359467,19.9250573 C20.35562,19.9336867 20.3518954,19.9423702 20.3482945,19.9511052 L18.6632131,24.038695 C15.7398812,25.4026522 13.3643706,26.0846307 11.5366811,26.0846307 C10.0517269,26.0846307 8.00099246,25.4849054 5.38447792,24.2854549 L5.38448339,24.285443 C4.38038273,23.8251478 3.19325534,24.2659892 2.73296014,25.2700899 C2.71312074,25.3133681 2.69483298,25.3573409 2.67813181,25.4019242 Z\",\n    id: \"shoe\"\n  })), /* @__PURE__ */ React.createElement(\"rect\", {\n    id: \"Base\",\n    fill: \"#2F3676\",\n    x: \"245\",\n    y: \"151\",\n    width: \"53\",\n    height: \"7\",\n    rx: \"3.5\"\n  }), /* @__PURE__ */ React.createElement(\"path\", {\n    d: \"M109,6 L216,6 C221.522847,6 226,10.4771525 226,16 L226,65 L103,65 C100.790861,65 99,63.209139 99,61 L99,16 C99,10.4771525 103.477153,6 109,6 Z\",\n    id: \"Seat\",\n    fill: \"#2F3676\"\n  }), /* @__PURE__ */ React.createElement(\"path\", {\n    d: \"M216,6 L218.193678,6 C223.091205,6 227.268082,9.54701889 228.061559,14.3798408 L250,148 L239.314286,148\",\n    id: \"Wheel-Stuff\",\n    fill: \"#2F3676\"\n  }), /* @__PURE__ */ React.createElement(\"circle\", {\n    id: \"Front-Wheel\",\n    fill: \"#191847\",\n    cx: \"245\",\n    cy: \"150\",\n    r: \"18\"\n  }), /* @__PURE__ */ React.createElement(\"g\", {\n    id: \"Wheel\",\n    transform: \"translate(36.000000, 14.000000)\",\n    fill: \"#191847\"\n  }, /* @__PURE__ */ React.createElement(\"path\", {\n    d: \"M76,152 C34.026359,152 0,117.973641 0,76 C0,34.026359 34.026359,0 76,0 C117.973641,0 152,34.026359 152,76 C152,117.973641 117.973641,152 76,152 Z M76,138 C110.241654,138 138,110.241654 138,76 C138,41.7583455 110.241654,14 76,14 C41.7583455,14 14,41.7583455 14,76 C14,110.241654 41.7583455,138 76,138 Z\"\n  }), /* @__PURE__ */ React.createElement(\"rect\", {\n    id: \"Wheel-Stuff\",\n    x: \"72\",\n    y: \"10\",\n    width: \"8\",\n    height: \"132\"\n  }), /* @__PURE__ */ React.createElement(\"rect\", {\n    id: \"Wheel-Stuff\",\n    transform: \"translate(76.000000, 76.000000) rotate(45.000000) translate(-76.000000, -76.000000) \",\n    x: \"72\",\n    y: \"10\",\n    width: \"8\",\n    height: \"132\",\n    rx: \"2\"\n  }), /* @__PURE__ */ React.createElement(\"rect\", {\n    id: \"Wheel-Stuff\",\n    transform: \"translate(76.000000, 76.000000) rotate(90.000000) translate(-76.000000, -76.000000) \",\n    x: \"72\",\n    y: \"10\",\n    width: \"8\",\n    height: \"132\",\n    rx: \"2\"\n  }), /* @__PURE__ */ React.createElement(\"rect\", {\n    id: \"Wheel-Stuff\",\n    transform: \"translate(76.000000, 76.000000) rotate(135.000000) translate(-76.000000, -76.000000) \",\n    x: \"72\",\n    y: \"10\",\n    width: \"8\",\n    height: \"132\",\n    rx: \"2\"\n  })));\n});\nexport {\n  Baggy,\n  Skinny,\n  Sweat,\n  Wheelchair\n};\n", "import * as React from \"react\";\nimport { forwardRef } from \"react\";\nimport { Color } from \"framer\";\nconst Baggy = forwardRef((props, ref) => {\n  const { skin } = props;\n  return /* @__PURE__ */ React.createElement(\"g\", {\n    id: \"Bottom/Standing/Baggy-Pants\",\n    stroke: \"none\",\n    strokeWidth: \"1\",\n    fill: \"none\",\n    fillRule: \"evenodd\"\n  }, /* @__PURE__ */ React.createElement(\"polygon\", {\n    id: \"Leg\",\n    fill: skin,\n    points: \"134 0 183.081639 124.226909 216.000898 229.25029 229 229.25029 178.673688 5.090379e-13\"\n  }), /* @__PURE__ */ React.createElement(\"path\", {\n    d: \"M124.116628,0 C123.593979,43.6541888 115.971833,102.427468 114.754071,105.148648 C113.942229,106.962768 85.9161573,130.032465 30.6758546,174.357739 L39.6290713,183.938736 C104.807511,145.935376 138.9048,124.399339 141.920937,119.330628 C146.445143,111.72756 161.1744,41.763137 173,0 L124.116628,0 Z\",\n    id: \"Leg\",\n    fill: skin\n  }), /* @__PURE__ */ React.createElement(\"g\", {\n    id: \"Accessories/Shoe/Flat-Sneaker\",\n    transform: \"translate(51.500000, 189.000000) rotate(50.000000) translate(-51.500000, -189.000000) translate(21.000000, 169.000000)\",\n    fill: \"#E4E4E4\"\n  }, /* @__PURE__ */ React.createElement(\"path\", {\n    d: \"M2.67813181,25.4019242 C1.55937727,28.3884109 1,30.6229931 1,32.1056708 C1,33.908957 1.3004142,36.5404001 1.90124261,40 C3.99318117,40 22.7937852,40 58.3030548,40 C59.768738,35.1545073 58.9226607,32.5385816 55.7648228,32.1522232 C52.606985,31.7658647 49.9837155,31.4170139 47.8950143,31.1056708 L21.6799926,19.4188835 C21.1755635,19.1940064 20.584344,19.4206282 20.359467,19.9250573 C20.35562,19.9336867 20.3518954,19.9423702 20.3482945,19.9511052 L18.6632131,24.038695 C15.7398812,25.4026522 13.3643706,26.0846307 11.5366811,26.0846307 C10.0517269,26.0846307 8.00099246,25.4849054 5.38447792,24.2854549 L5.38448339,24.285443 C4.38038273,23.8251478 3.19325534,24.2659892 2.73296014,25.2700899 C2.71312074,25.3133681 2.69483298,25.3573409 2.67813181,25.4019242 Z\",\n    id: \"shoe\"\n  })), /* @__PURE__ */ React.createElement(\"g\", {\n    id: \"Accessories/Shoe/Flat-Sneaker\",\n    transform: \"translate(208.000000, 199.000000)\",\n    fill: \"#E4E4E4\"\n  }, /* @__PURE__ */ React.createElement(\"path\", {\n    d: \"M2.67813181,25.4019242 C1.55937727,28.3884109 1,30.6229931 1,32.1056708 C1,33.908957 1.3004142,36.5404001 1.90124261,40 C3.99318117,40 22.7937852,40 58.3030548,40 C59.768738,35.1545073 58.9226607,32.5385816 55.7648228,32.1522232 C52.606985,31.7658647 49.9837155,31.4170139 47.8950143,31.1056708 L21.6799926,19.4188835 C21.1755635,19.1940064 20.584344,19.4206282 20.359467,19.9250573 C20.35562,19.9336867 20.3518954,19.9423702 20.3482945,19.9511052 L18.6632131,24.038695 C15.7398812,25.4026522 13.3643706,26.0846307 11.5366811,26.0846307 C10.0517269,26.0846307 8.00099246,25.4849054 5.38447792,24.2854549 L5.38448339,24.285443 C4.38038273,23.8251478 3.19325534,24.2659892 2.73296014,25.2700899 C2.71312074,25.3133681 2.69483298,25.3573409 2.67813181,25.4019242 Z\",\n    id: \"shoe\"\n  })), /* @__PURE__ */ React.createElement(\"polygon\", {\n    id: \"Pant\",\n    fill: \"#69A1AC\",\n    points: \"167 218.432889 228.804464 211.725327 183 2.84217094e-14 127.644073 2.84217094e-14\"\n  }), /* @__PURE__ */ React.createElement(\"path\", {\n    d: \"M43.4599581,158.900479 L84,206.885961 C126.699953,160.249961 151.594137,129.819963 158.682552,115.595966 C165.770967,101.37197 172.143091,62.839981 177.798925,0 L115.478146,0 C112.388642,55.2838742 110.306102,84.2121259 109.230525,86.7847551 C108.154948,89.3573843 86.2314253,113.395959 43.4599581,158.900479 Z\",\n    id: \"Pant\",\n    fill: \"#89C5CC\"\n  }));\n});\nconst Jogging = forwardRef((props, ref) => {\n  const { skin } = props;\n  return /* @__PURE__ */ React.createElement(\"g\", {\n    id: \"Bottom/Standing/Jogging\",\n    stroke: \"none\",\n    strokeWidth: \"1\",\n    fill: \"none\",\n    fillRule: \"evenodd\"\n  }, /* @__PURE__ */ React.createElement(\"polygon\", {\n    id: \"Leg\",\n    fill: skin,\n    points: \"130 0 204.306413 124.226909 260.014844 229.25029 272.013946 229.25029 178.673688 5.090379e-13\"\n  }), /* @__PURE__ */ React.createElement(\"g\", {\n    id: \"Accessories/Shoe/Flat-Sneaker\",\n    transform: \"translate(250.000000, 199.000000)\",\n    fill: \"#E4E4E4\"\n  }, /* @__PURE__ */ React.createElement(\"path\", {\n    d: \"M2.67813181,25.4019242 C1.55937727,28.3884109 1,30.6229931 1,32.1056708 C1,33.908957 1.3004142,36.5404001 1.90124261,40 C3.99318117,40 22.7937852,40 58.3030548,40 C59.768738,35.1545073 58.9226607,32.5385816 55.7648228,32.1522232 C52.606985,31.7658647 49.9837155,31.4170139 47.8950143,31.1056708 L21.6799926,19.4188835 C21.1755635,19.1940064 20.584344,19.4206282 20.359467,19.9250573 C20.35562,19.9336867 20.3518954,19.9423702 20.3482945,19.9511052 L18.6632131,24.038695 C15.7398812,25.4026522 13.3643706,26.0846307 11.5366811,26.0846307 C10.0517269,26.0846307 8.00099246,25.4849054 5.38447792,24.2854549 L5.38448339,24.285443 C4.38038273,23.8251478 3.19325534,24.2659892 2.73296014,25.2700899 C2.71312074,25.3133681 2.69483298,25.3573409 2.67813181,25.4019242 Z\",\n    id: \"shoe\"\n  })), /* @__PURE__ */ React.createElement(\"path\", {\n    d: \"M244.543057,212.432889 L267.683113,205.432889 C257.544824,175.124875 245.118911,141.772016 230.405374,105.374313 C215.691837,68.97661 199.890046,33.851839 183,2.84217094e-14 L117.644073,2.84217094e-14 C136.422172,42.821022 156.329475,81.7294172 177.365982,116.725186 C198.402489,151.720954 220.794847,183.623522 244.543057,212.432889 Z\",\n    id: \"Pant\",\n    fill: \"#DB2721\"\n  }), /* @__PURE__ */ React.createElement(\"path\", {\n    d: \"M125.116628,2.84217094e-14 C118.103498,43.6541888 104.577091,99.4274685 103.300563,101.148648 C102.449544,102.296102 71.8126514,112.562199 11.3898843,131.94694 L13.9818352,142.527938 C86.0358431,132.131776 124.00216,124.066006 127.880787,118.330628 C133.698727,109.72756 162.748486,41.763137 174,2.84217094e-14 L125.116628,2.84217094e-14 Z\",\n    id: \"Leg\",\n    fill: skin\n  }), /* @__PURE__ */ React.createElement(\"path\", {\n    d: \"M32.6295078,122.800477 L37.1949469,139.841939 C91.0871466,144.568621 124.108088,141.153296 136.25777,129.595966 C148.407453,118.038636 162.254504,74.839981 177.798925,-1.13686838e-13 L115.478146,-1.13686838e-13 C105.629567,61.2838742 100.12357,93.2121259 98.9601559,95.7847551 C97.7967416,98.3573843 75.6865256,107.362625 32.6295078,122.800477 Z\",\n    id: \"Pant\",\n    fill: \"#FF4133\"\n  }), /* @__PURE__ */ React.createElement(\"g\", {\n    id: \"Accessories/Shoe/Flat-Sneaker\",\n    transform: \"translate(24.500000, 154.000000) rotate(80.000000) translate(-24.500000, -154.000000) translate(-6.000000, 134.000000)\",\n    fill: \"#E4E4E4\"\n  }, /* @__PURE__ */ React.createElement(\"path\", {\n    d: \"M2.67813181,25.4019242 C1.55937727,28.3884109 1,30.6229931 1,32.1056708 C1,33.908957 1.3004142,36.5404001 1.90124261,40 C3.99318117,40 22.7937852,40 58.3030548,40 C59.768738,35.1545073 58.9226607,32.5385816 55.7648228,32.1522232 C52.606985,31.7658647 49.9837155,31.4170139 47.8950143,31.1056708 L21.6799926,19.4188835 C21.1755635,19.1940064 20.584344,19.4206282 20.359467,19.9250573 C20.35562,19.9336867 20.3518954,19.9423702 20.3482945,19.9511052 L18.6632131,24.038695 C15.7398812,25.4026522 13.3643706,26.0846307 11.5366811,26.0846307 C10.0517269,26.0846307 8.00099246,25.4849054 5.38447792,24.2854549 L5.38448339,24.285443 C4.38038273,23.8251478 3.19325534,24.2659892 2.73296014,25.2700899 C2.71312074,25.3133681 2.69483298,25.3573409 2.67813181,25.4019242 Z\",\n    id: \"shoe\"\n  })));\n});\nconst Shorts = forwardRef((props, ref) => {\n  const { skin } = props;\n  const shadowSkin = Color.darken(Color(skin), 3).toValue();\n  return /* @__PURE__ */ React.createElement(\"g\", {\n    id: \"Bottom/Standing/Shorts\",\n    stroke: \"none\",\n    strokeWidth: \"1\",\n    fill: \"none\",\n    fillRule: \"evenodd\"\n  }, /* @__PURE__ */ React.createElement(\"polygon\", {\n    id: \"Leg\",\n    fill: shadowSkin,\n    points: \"128 9.9475983e-14 165.630838 123.024171 183.860154 227.648304 198.153197 227.648304 178.890974 9.9475983e-14\"\n  }), /* @__PURE__ */ React.createElement(\"path\", {\n    d: \"M114.537727,0 C117.093705,67.5468821 114.085665,102.388787 113.513606,108.525715 C112.941548,114.662643 105.108196,154.454812 86.5636874,229.708469 L101.793992,224.477699 C131.10186,155.458959 141.088936,119.5887 144.450326,110.525715 C147.811717,101.46273 156.739403,64.6208249 171.233385,0 L114.537727,0 Z\",\n    id: \"Leg\",\n    fill: skin\n  }), /* @__PURE__ */ React.createElement(\"g\", {\n    id: \"Accessories/Shoe/Flat-Sneaker\",\n    transform: \"translate(84.000000, 199.000000)\",\n    fill: \"#E4E4E4\"\n  }, /* @__PURE__ */ React.createElement(\"path\", {\n    d: \"M2.67813181,25.4019242 C1.55937727,28.3884109 1,30.6229931 1,32.1056708 C1,33.908957 1.3004142,36.5404001 1.90124261,40 C3.99318117,40 22.7937852,40 58.3030548,40 C59.768738,35.1545073 58.9226607,32.5385816 55.7648228,32.1522232 C52.606985,31.7658647 49.9837155,31.4170139 47.8950143,31.1056708 L21.6799926,19.4188835 C21.1755635,19.1940064 20.584344,19.4206282 20.359467,19.9250573 C20.35562,19.9336867 20.3518954,19.9423702 20.3482945,19.9511052 L18.6632131,24.038695 C15.7398812,25.4026522 13.3643706,26.0846307 11.5366811,26.0846307 C10.0517269,26.0846307 8.00099246,25.4849054 5.38447792,24.2854549 L5.38448339,24.285443 C4.38038273,23.8251478 3.19325534,24.2659892 2.73296014,25.2700899 C2.71312074,25.3133681 2.69483298,25.3573409 2.67813181,25.4019242 Z\",\n    id: \"shoe\"\n  })), /* @__PURE__ */ React.createElement(\"g\", {\n    id: \"Accessories/Shoe/Flat-Sneaker\",\n    transform: \"translate(178.000000, 199.000000)\",\n    fill: \"#E4E4E4\"\n  }, /* @__PURE__ */ React.createElement(\"path\", {\n    d: \"M2.67813181,25.4019242 C1.55937727,28.3884109 1,30.6229931 1,32.1056708 C1,33.908957 1.3004142,36.5404001 1.90124261,40 C3.99318117,40 22.7937852,40 58.3030548,40 C59.768738,35.1545073 58.9226607,32.5385816 55.7648228,32.1522232 C52.606985,31.7658647 49.9837155,31.4170139 47.8950143,31.1056708 L21.6799926,19.4188835 C21.1755635,19.1940064 20.584344,19.4206282 20.359467,19.9250573 C20.35562,19.9336867 20.3518954,19.9423702 20.3482945,19.9511052 L18.6632131,24.038695 C15.7398812,25.4026522 13.3643706,26.0846307 11.5366811,26.0846307 C10.0517269,26.0846307 8.00099246,25.4849054 5.38447792,24.2854549 L5.38448339,24.285443 C4.38038273,23.8251478 3.19325534,24.2659892 2.73296014,25.2700899 C2.71312074,25.3133681 2.69483298,25.3573409 2.67813181,25.4019242 Z\",\n    id: \"shoe\"\n  })), /* @__PURE__ */ React.createElement(\"polygon\", {\n    id: \"Bottom\",\n    fill: \"#69A1AC\",\n    points: \"123 0 139 62.6795201 187.870318 62.6795201 180.583554 0\"\n  }), /* @__PURE__ */ React.createElement(\"path\", {\n    d: \"M114,-3.55271368e-15 C108.735439,15.7805461 107.735439,36.6737195 111,62.6795201 L160.870318,62.6795201 L174.583554,-3.55271368e-15 L114,-3.55271368e-15 Z\",\n    id: \"Bottom\",\n    fill: \"#89C5CC\"\n  }));\n});\nconst Skinny = forwardRef((props, ref) => {\n  const { skin } = props;\n  return /* @__PURE__ */ React.createElement(\"g\", {\n    id: \"Bottom/Standing/Skinny-Jeans-Walk\",\n    stroke: \"none\",\n    strokeWidth: \"1\",\n    fill: \"none\",\n    fillRule: \"evenodd\"\n  }, /* @__PURE__ */ React.createElement(\"polygon\", {\n    id: \"Leg\",\n    fill: \"#1F28CF\",\n    points: \"128 0 176.081639 127.226909 209.783329 221 229 221 182.673688 9.81437154e-14\"\n  }), /* @__PURE__ */ React.createElement(\"path\", {\n    d: \"M116.116628,0 C115.593979,43.6541888 115.971833,102.427468 114.754071,105.148648 C113.942229,106.962768 88.6908725,127.632305 39,167.157257 L48.9049803,184 C107.899481,145.955797 138.9048,124.399339 141.920937,119.330628 C146.445143,111.72756 169.1744,41.763137 181,0 L116.116628,0 Z\",\n    id: \"Leg\",\n    fill: \"#2B44FF\"\n  }), /* @__PURE__ */ React.createElement(\"g\", {\n    id: \"Accessories/Shoe/Flat-Pointy\",\n    transform: \"translate(56.500000, 189.000000) rotate(50.000000) translate(-56.500000, -189.000000) translate(26.000000, 169.000000)\",\n    fill: \"#191847\"\n  }, /* @__PURE__ */ React.createElement(\"path\", {\n    d: \"M0,40 L1,19 L22,19 C31.9576033,26 44.9576033,31.6666667 61,36 L61,40 L23,40 L10,38 L10,40 L0,40 Z\",\n    id: \"Shoe\"\n  })), /* @__PURE__ */ React.createElement(\"g\", {\n    id: \"Accessories/Shoe/Flat-Pointy\",\n    transform: \"translate(208.000000, 199.000000)\",\n    fill: \"#191847\"\n  }, /* @__PURE__ */ React.createElement(\"path\", {\n    d: \"M0,40 L1,19 L22,19 C31.9576033,26 44.9576033,31.6666667 61,36 L61,40 L23,40 L10,38 L10,40 L0,40 Z\",\n    id: \"Shoe\"\n  })));\n});\nconst Skinny2 = forwardRef((props, ref) => {\n  const { skin } = props;\n  return /* @__PURE__ */ React.createElement(\"g\", {\n    id: \"Bottom/Standing/Skinny-Jeans\",\n    stroke: \"none\",\n    strokeWidth: \"1\",\n    fill: \"none\",\n    fillRule: \"evenodd\"\n  }, /* @__PURE__ */ React.createElement(\"polygon\", {\n    id: \"Leg\",\n    fill: \"#191847\",\n    points: \"128 9.9475983e-14 164.254962 127.226909 190.706957 221 210 221 181.890974 9.9475983e-14\"\n  }), /* @__PURE__ */ React.createElement(\"path\", {\n    d: \"M118.304342,0 C117.465768,65.5742244 114.606247,101.340188 113.725779,107.297892 C112.845311,113.255595 99.5321718,151.156298 73.7863613,221 L93.7726468,221 C126.549033,153.996902 144.845651,116.096199 148.662499,107.297892 C152.479348,98.4995844 164.258515,62.7336205 182,0 L118.304342,0 Z\",\n    id: \"Leg\",\n    fill: \"#2F3676\"\n  }), /* @__PURE__ */ React.createElement(\"g\", {\n    id: \"Accessories/Shoe/Flat-Pointy\",\n    transform: \"translate(72.000000, 199.000000)\",\n    fill: \"#191847\"\n  }, /* @__PURE__ */ React.createElement(\"path\", {\n    d: \"M0,40 L1,19 L22,19 C31.9576033,26 44.9576033,31.6666667 61,36 L61,40 L23,40 L10,38 L10,40 L0,40 Z\",\n    id: \"Shoe\"\n  })), /* @__PURE__ */ React.createElement(\"g\", {\n    id: \"Accessories/Shoe/Flat-Pointy\",\n    transform: \"translate(188.000000, 199.000000)\",\n    fill: \"#191847\"\n  }, /* @__PURE__ */ React.createElement(\"path\", {\n    d: \"M0,40 L1,19 L22,19 C31.9576033,26 44.9576033,31.6666667 61,36 L61,40 L23,40 L10,38 L10,40 L0,40 Z\",\n    id: \"Shoe\"\n  })));\n});\nconst Skirt = forwardRef((props, ref) => {\n  const { skin } = props;\n  return /* @__PURE__ */ React.createElement(\"g\", {\n    id: \"Bottom/Standing/Skirt\",\n    stroke: \"none\",\n    strokeWidth: \"1\",\n    fill: \"none\",\n    fillRule: \"evenodd\"\n  }, /* @__PURE__ */ React.createElement(\"path\", {\n    d: \"M97.4078252,98.0880741 C121.397173,104.797924 142.094458,108.152849 159.499678,108.152849 C176.904899,108.152849 193.071673,102.986324 208,92.6532736 C184.524241,85.7662231 165.190908,82.3226979 150,82.3226979 C134.809092,82.3226979 117.278368,87.5778233 97.4078252,98.0880741 Z\",\n    id: \"Skirt-Shadow\",\n    fill: \"#1F28CF\"\n  }), /* @__PURE__ */ React.createElement(\"path\", {\n    d: \"M180.266835,117.824327 C180.035521,117.476585 179.840175,117.098311 179.685231,116.688552 C176.478637,108.208488 125.116885,16.7255336 120,0 L177.826087,0 C181.716527,12.7166594 199.227018,92.5197596 201.69132,108.441654 C209.466648,133.556719 225.475271,214.895245 227.518903,220.530129 C229.66877,226.457932 217.572184,232.63317 214.348729,225.345671 C209.219667,213.750031 196.998649,181.665102 191.557135,162.074268 C186.455728,143.707903 182.301821,127.184501 180.266835,117.824327 Z\",\n    id: \"Leg\",\n    fill: skin\n  }), /* @__PURE__ */ React.createElement(\"path\", {\n    d: \"M132.957062,128.993595 C109.475313,134.928474 23.5840287,145.657684 17.6897926,147.340533 C11.6264626,149.07166 6.31008232,136.573779 13.8046857,133.866526 C25.7298651,129.558829 58.589132,119.605712 78.5118243,115.544042 C94.5364316,112.27708 109.159082,109.611243 118.976345,108.050159 C118.144649,80.4734403 114.342756,14.2935455 116.834687,1.42108547e-14 L168,1.42108547e-14 C165.610405,13.7065491 145.410112,113.717714 141.6556,123.728549 C140.464101,127.302484 136.908919,128.8819 132.957062,128.993595 Z\",\n    id: \"Leg\",\n    fill: skin\n  }), /* @__PURE__ */ React.createElement(\"g\", {\n    id: \"Accessories/Shoe/Flat-Sneaker\",\n    transform: \"translate(24.500000, 157.000000) rotate(80.000000) translate(-24.500000, -157.000000) translate(-6.000000, 137.000000)\",\n    fill: \"#E4E4E4\"\n  }, /* @__PURE__ */ React.createElement(\"path\", {\n    d: \"M2.67813181,25.4019242 C1.55937727,28.3884109 1,30.6229931 1,32.1056708 C1,33.908957 1.3004142,36.5404001 1.90124261,40 C3.99318117,40 22.7937852,40 58.3030548,40 C59.768738,35.1545073 58.9226607,32.5385816 55.7648228,32.1522232 C52.606985,31.7658647 49.9837155,31.4170139 47.8950143,31.1056708 L21.6799926,19.4188835 C21.1755635,19.1940064 20.584344,19.4206282 20.359467,19.9250573 C20.35562,19.9336867 20.3518954,19.9423702 20.3482945,19.9511052 L18.6632131,24.038695 C15.7398812,25.4026522 13.3643706,26.0846307 11.5366811,26.0846307 C10.0517269,26.0846307 8.00099246,25.4849054 5.38447792,24.2854549 L5.38448339,24.285443 C4.38038273,23.8251478 3.19325534,24.2659892 2.73296014,25.2700899 C2.71312074,25.3133681 2.69483298,25.3573409 2.67813181,25.4019242 Z\",\n    id: \"shoe\"\n  })), /* @__PURE__ */ React.createElement(\"g\", {\n    id: \"Accessories/Shoe/Flat-Sneaker\",\n    transform: \"translate(208.000000, 199.000000)\",\n    fill: \"#E4E4E4\"\n  }, /* @__PURE__ */ React.createElement(\"path\", {\n    d: \"M2.67813181,25.4019242 C1.55937727,28.3884109 1,30.6229931 1,32.1056708 C1,33.908957 1.3004142,36.5404001 1.90124261,40 C3.99318117,40 22.7937852,40 58.3030548,40 C59.768738,35.1545073 58.9226607,32.5385816 55.7648228,32.1522232 C52.606985,31.7658647 49.9837155,31.4170139 47.8950143,31.1056708 L21.6799926,19.4188835 C21.1755635,19.1940064 20.584344,19.4206282 20.359467,19.9250573 C20.35562,19.9336867 20.3518954,19.9423702 20.3482945,19.9511052 L18.6632131,24.038695 C15.7398812,25.4026522 13.3643706,26.0846307 11.5366811,26.0846307 C10.0517269,26.0846307 8.00099246,25.4849054 5.38447792,24.2854549 L5.38448339,24.285443 C4.38038273,23.8251478 3.19325534,24.2659892 2.73296014,25.2700899 C2.71312074,25.3133681 2.69483298,25.3573409 2.67813181,25.4019242 Z\",\n    id: \"shoe\"\n  })), /* @__PURE__ */ React.createElement(\"path\", {\n    d: \"M117,3.55271368e-15 C139.546839,-6.45073907 160.880173,-6.45073907 181,3.55271368e-15 C188,31.9374682 205.00894,44.6134741 208,93.5789257 C174,110.472724 132,81.5304571 97,98.005311 C87,74.9611073 101,19.4645181 117,3.55271368e-15 Z\",\n    id: \"Skirt\",\n    fill: \"#2B44FF\"\n  }));\n});\nconst Sprint = forwardRef((props, ref) => {\n  const { skin } = props;\n  return /* @__PURE__ */ React.createElement(\"g\", {\n    id: \"Bottom/Standing/Sprint\",\n    stroke: \"none\",\n    strokeWidth: \"1\",\n    fill: \"none\",\n    fillRule: \"evenodd\"\n  }, /* @__PURE__ */ React.createElement(\"path\", {\n    d: \"M207.469522,-9.65840194 C188.34471,5.93412613 195.620321,142.644251 194.343793,144.365431 C193.776447,145.1304 163.468239,151.639612 103.419169,163.893066 L106.01112,174.474064 C176.253239,170.987921 213.421261,166.637951 217.515185,161.424153 C223.376511,153.959489 230.620797,112.212202 239.248044,36.1822931 L207.469522,-9.65840194 Z\",\n    id: \"Leg\",\n    fill: skin,\n    transform: \"translate(171.333606, 82.407831) rotate(-55.000000) translate(-171.333606, -82.407831) \"\n  }), /* @__PURE__ */ React.createElement(\"path\", {\n    d: \"M113.540088,152.75781 L118.105527,169.799273 C170.465638,175.811529 204.983252,168.36956 217.132934,156.81223 C225.232723,149.107343 232.495664,107.473517 238.921759,31.9107522 L204.926407,-16.6396419 C159.401042,17.7063231 186.537309,130.140454 185.373895,132.713083 C184.210481,135.285712 156.597106,137.319958 113.540088,152.75781 Z\",\n    id: \"Pant\",\n    fill: \"#2F3676\",\n    transform: \"translate(176.230924, 77.646617) rotate(-55.000000) translate(-176.230924, -77.646617) \"\n  }), /* @__PURE__ */ React.createElement(\"g\", {\n    id: \"Accessories/Shoe/Flat-Sneaker\",\n    transform: \"translate(223.383915, 187.279121) rotate(20.000000) translate(-223.383915, -187.279121) translate(192.883915, 167.279121)\",\n    fill: \"#E4E4E4\"\n  }, /* @__PURE__ */ React.createElement(\"path\", {\n    d: \"M2.67813181,25.4019242 C1.55937727,28.3884109 1,30.6229931 1,32.1056708 C1,33.908957 1.3004142,36.5404001 1.90124261,40 C3.99318117,40 22.7937852,40 58.3030548,40 C59.768738,35.1545073 58.9226607,32.5385816 55.7648228,32.1522232 C52.606985,31.7658647 49.9837155,31.4170139 47.8950143,31.1056708 L21.6799926,19.4188835 C21.1755635,19.1940064 20.584344,19.4206282 20.359467,19.9250573 C20.35562,19.9336867 20.3518954,19.9423702 20.3482945,19.9511052 L18.6632131,24.038695 C15.7398812,25.4026522 13.3643706,26.0846307 11.5366811,26.0846307 C10.0517269,26.0846307 8.00099246,25.4849054 5.38447792,24.2854549 L5.38448339,24.285443 C4.38038273,23.8251478 3.19325534,24.2659892 2.73296014,25.2700899 C2.71312074,25.3133681 2.69483298,25.3573409 2.67813181,25.4019242 Z\",\n    id: \"shoe\"\n  })), /* @__PURE__ */ React.createElement(\"polygon\", {\n    id: \"Leg\",\n    fill: skin,\n    points: \"130 0 78.2540376 124.226909 27.3958106 229.25029 39.3949124 229.25029 170.673688 0\"\n  }), /* @__PURE__ */ React.createElement(\"g\", {\n    id: \"Accessories/Shoe/Flat-Sneaker\",\n    transform: \"translate(24.000000, 199.000000)\",\n    fill: \"#E4E4E4\"\n  }, /* @__PURE__ */ React.createElement(\"path\", {\n    d: \"M2.67813181,25.4019242 C1.55937727,28.3884109 1,30.6229931 1,32.1056708 C1,33.908957 1.3004142,36.5404001 1.90124261,40 C3.99318117,40 22.7937852,40 58.3030548,40 C59.768738,35.1545073 58.9226607,32.5385816 55.7648228,32.1522232 C52.606985,31.7658647 49.9837155,31.4170139 47.8950143,31.1056708 L21.6799926,19.4188835 C21.1755635,19.1940064 20.584344,19.4206282 20.359467,19.9250573 C20.35562,19.9336867 20.3518954,19.9423702 20.3482945,19.9511052 L18.6632131,24.038695 C15.7398812,25.4026522 13.3643706,26.0846307 11.5366811,26.0846307 C10.0517269,26.0846307 8.00099246,25.4849054 5.38447792,24.2854549 L5.38448339,24.285443 C4.38038273,23.8251478 3.19325534,24.2659892 2.73296014,25.2700899 C2.71312074,25.3133681 2.69483298,25.3573409 2.67813181,25.4019242 Z\",\n    id: \"shoe\"\n  })), /* @__PURE__ */ React.createElement(\"path\", {\n    d: \"M31.9885488,207.432889 L58.6506859,212.432889 C79.2657755,182.124875 165.540767,57.851839 175,2.84217094e-14 L115.644073,2.84217094e-14 C84.0548806,41.821022 51.6389867,176.623522 31.9885488,207.432889 Z\",\n    id: \"Pant\",\n    fill: \"#5C63AB\"\n  }));\n});\nconst Sweatpants = forwardRef((props, ref) => {\n  const { skin } = props;\n  return /* @__PURE__ */ React.createElement(\"g\", {\n    id: \"Bottom/Standing/Sweatpants\",\n    stroke: \"none\",\n    strokeWidth: \"1\",\n    fill: \"none\",\n    fillRule: \"evenodd\"\n  }, /* @__PURE__ */ React.createElement(\"polygon\", {\n    id: \"Leg\",\n    fill: skin,\n    points: \"128 9.9475983e-14 164.630838 126.226909 181.860154 221 199.153197 221 181.890974 9.9475983e-14\"\n  }), /* @__PURE__ */ React.createElement(\"path\", {\n    d: \"M111.537727,0 C114.093705,65.5742244 113.085665,101.340188 112.513606,107.297892 C111.941548,113.255595 108.69393,153.156298 86.5636874,223 L104.549973,223 C133.85784,155.996902 144.088936,116.096199 147.450326,107.297892 C150.811717,98.4995844 160.739403,62.7336205 175.233385,0 L111.537727,0 Z\",\n    id: \"Leg\",\n    fill: skin\n  }), /* @__PURE__ */ React.createElement(\"path\", {\n    d: \"M127.213639,1.13686838e-13 C136.741891,43.4350253 153.221683,112.768359 176.653017,208 L201.946059,208 C203.814239,110.253828 195.86709,45.9204947 182.104613,1.13686838e-13 L127.213639,1.13686838e-13 Z\",\n    id: \"Pant\",\n    fill: \"#69A1AC\"\n  }), /* @__PURE__ */ React.createElement(\"path\", {\n    d: \"M111.409919,0 C113.913164,65.5742244 107.425844,130.177256 87.3305078,209.020958 L114.316793,209.020958 C143.678541,143.017859 164.723052,78.7336205 179.105577,0 L111.409919,0 Z\",\n    id: \"Pant\",\n    fill: \"#89C5CC\"\n  }), /* @__PURE__ */ React.createElement(\"g\", {\n    id: \"Accessories/Shoe/Flat-Simple\",\n    transform: \"translate(84.000000, 199.000000)\",\n    fill: \"#191847\"\n  }, /* @__PURE__ */ React.createElement(\"path\", {\n    d: \"M0,37 L0.99242267,21 C6.8029179,22.6994251 14.0806841,22.0327584 22.8257214,19 C32.2287535,25.660617 44.0659431,30.2086712 58.3372903,32.6441626 L58.3372863,32.6441862 C59.4261013,32.829999 60.1581292,33.8632891 59.9723163,34.9521041 C59.9602834,35.0226139 59.9444765,35.0924273 59.9249637,35.1612435 L58.5529375,40 L22.8257214,40 L1.98484534,40 L0,37 Z\",\n    id: \"Shoe\"\n  })), /* @__PURE__ */ React.createElement(\"g\", {\n    id: \"Accessories/Shoe/Flat-Simple\",\n    transform: \"translate(178.000000, 199.000000)\",\n    fill: \"#191847\"\n  }, /* @__PURE__ */ React.createElement(\"path\", {\n    d: \"M0,37 L0.99242267,21 C6.8029179,22.6994251 14.0806841,22.0327584 22.8257214,19 C32.2287535,25.660617 44.0659431,30.2086712 58.3372903,32.6441626 L58.3372863,32.6441862 C59.4261013,32.829999 60.1581292,33.8632891 59.9723163,34.9521041 C59.9602834,35.0226139 59.9444765,35.0924273 59.9249637,35.1612435 L58.5529375,40 L22.8257214,40 L1.98484534,40 L0,37 Z\",\n    id: \"Shoe\"\n  })));\n});\nexport {\n  Baggy,\n  Jogging,\n  Shorts,\n  Skinny,\n  Skinny2,\n  Skirt,\n  Sprint,\n  Sweatpants\n};\n", "import { jsx as _jsx, jsxs as _jsxs } from \"react/jsx-runtime\";\nimport { addPropertyControls, ControlType } from \"framer\";\nimport * as Head from \"https://framer.com/m/humaaans-assets/head.js@0.0.33\"; // import * as Objects from \"https://framer.com/m/humaaans-assets/objects.js@0.0.32\"\nimport * as Body from \"https://framer.com/m/humaaans-assets/body.js@0.0.33\"; // import * as Scene from \"https://framer.com/m/humaaans-assets/scene.js@0.0.32\"\nimport * as Sitting from \"https://framer.com/m/humaaans-assets/sitting.js@0.0.33\";\nimport * as Standing from \"https://framer.com/m/humaaans-assets/standing.js@0.0.33\";\nfunction setViewBox(isStanding) {\n  const height = isStanding ? 480 : 400;\n  return `0 -25 ${380} ${height}`;\n} /**\n  * HUMAAANS\n  *\n  * @framerIntrinsicWidth 200\n  * @framerIntrinsicHeight 240\n  *\n  * @framerSupportedLayoutWidth fixed\n  * @framerSupportedLayoutHeight fixed\n  */\nexport function Humaaans(props) {\n  const {\n    headSelection,\n    isStanding,\n    sittingSelection,\n    standingSelection,\n    bodySelection,\n    skin,\n    hair,\n    direction,\n    onClick,\n    onMouseEnter,\n    onMouseLeave\n  } = props;\n  const HeadElement = Head[headSelection];\n  const BottomElement = isStanding ? Standing[standingSelection] : Sitting[sittingSelection];\n  const BodyElement = Body[bodySelection];\n  const viewBox = setViewBox(isStanding);\n  return /*#__PURE__*/_jsx(\"div\", {\n    onClick,\n    onMouseEnter,\n    onMouseLeave,\n    style: {\n      display: \"flex\",\n      justifyContent: \"center\",\n      alignItems: \"center\",\n      width: \"100%\",\n      height: \"100%\",\n      overflow: \"hidden\",\n      transform: direction ? \"scaleX(-1)\" : \"\"\n    },\n    children: /*#__PURE__*/_jsxs(\"svg\", {\n      height: \"100%\",\n      width: \"100%\",\n      version: \"1.1\",\n      viewBox: viewBox,\n      xmlns: \"http://www.w3.org/2000/svg\",\n      children: [/*#__PURE__*/_jsx(\"g\", {\n        id: \"head\",\n        transform: \"translate(82.000000, 0.000000)\",\n        children: /*#__PURE__*/_jsx(HeadElement, {\n          skin: skin,\n          hair: hair\n        })\n      }), /*#__PURE__*/_jsx(\"g\", {\n        id: \"bottom\",\n        transform: \"translate(0.000000, 187.000000)\",\n        children: /*#__PURE__*/_jsx(BottomElement, {\n          skin: skin\n        })\n      }), /*#__PURE__*/_jsx(\"g\", {\n        id: \"torso\",\n        transform: \"translate(22.000000, 82.000000)\",\n        children: /*#__PURE__*/_jsx(BodyElement, {\n          skin: skin\n        })\n      })]\n    })\n  });\n  return /*#__PURE__*/_jsx(\"div\", {});\n}\nHumaaans.defaultProps = {\n  width: 200,\n  height: 240,\n  iconSelection: \"PlusCircleOutline\",\n  iconSearch: \"PlusCircleOutline\",\n  color: \"#09F\",\n  selectByList: true,\n  headSelection: Object.keys(Head)[0],\n  bodySelection: Object.keys(Body)[0],\n  sittingSelection: Object.keys(Sitting)[0],\n  standingSelection: Object.keys(Standing)[0],\n  direction: false,\n  skin: \"#B28B67\",\n  hair: \"#191847\",\n  isStanding: false\n};\nHumaaans.displayName = \"Humaaans\";\nvar Illustrations;\n(function (Illustrations) {\n  Illustrations[\"object\"] = \"Object\";\n  Illustrations[\"scene\"] = \"Scene\";\n  Illustrations[\"human\"] = \"Human\";\n})(Illustrations || (Illustrations = {}));\naddPropertyControls(Humaaans, {\n  // illustration: {\n  //     type: ControlType.Enum,\n  //     displaySegmentedControl: true,\n  //     options: [Illustrations.human, Illustrations.scene],\n  // },\n  headSelection: {\n    type: ControlType.Enum,\n    options: Object.keys(Head).filter(k => !k.includes(\"info\")),\n    defaultValue: Humaaans.defaultProps.iconSelection,\n    title: \"Head\"\n  },\n  bodySelection: {\n    type: ControlType.Enum,\n    options: Object.keys(Body).filter(k => !k.includes(\"info\")),\n    defaultValue: Humaaans.defaultProps.iconSelection,\n    title: \"Torso\"\n  },\n  sittingSelection: {\n    type: ControlType.Enum,\n    options: Object.keys(Sitting).filter(k => !k.includes(\"info\")),\n    defaultValue: Humaaans.defaultProps.iconSelection,\n    title: \"Bottom\",\n    hidden: ({\n      isStanding\n    }) => isStanding\n  },\n  standingSelection: {\n    type: ControlType.Enum,\n    options: Object.keys(Standing).filter(k => !k.includes(\"info\")),\n    defaultValue: Humaaans.defaultProps.iconSelection,\n    title: \"Bottom\",\n    hidden: ({\n      isStanding\n    }) => !isStanding\n  },\n  isStanding: {\n    type: ControlType.Boolean,\n    title: \"Stance\",\n    enabledTitle: \"Standing\",\n    disabledTitle: \"Sitting\"\n  },\n  direction: {\n    type: ControlType.Boolean,\n    title: \"Direction\",\n    enabledTitle: \"Left\",\n    disabledTitle: \"Right\"\n  },\n  // color: { type: ControlType.Color, title: \"Color\" },\n  skin: {\n    type: ControlType.Color,\n    title: \"Skin\"\n  },\n  hair: {\n    type: ControlType.Color,\n    title: \"Hair\",\n    hidden: ({\n      headSelection\n    }) => headSelection === \"NoHair\" || headSelection === \"Hijab\" || headSelection === \"Hijab2\" || headSelection === \"Turban\" || headSelection === \"Turban2\"\n  },\n  onClick: {\n    type: ControlType.EventHandler\n  },\n  onMouseEnter: {\n    type: ControlType.EventHandler\n  },\n  onMouseLeave: {\n    type: ControlType.EventHandler\n  }\n});\nexport const __FramerMetadata__ = {\n  \"exports\": {\n    \"Humaaans\": {\n      \"type\": \"reactComponent\",\n      \"name\": \"Humaaans\",\n      \"slots\": [],\n      \"annotations\": {\n        \"framerIntrinsicHeight\": \"240\",\n        \"framerSupportedLayoutWidth\": \"fixed\",\n        \"framerContractVersion\": \"1\",\n        \"framerIntrinsicWidth\": \"200\",\n        \"framerSupportedLayoutHeight\": \"fixed\"\n      }\n    }\n  }\n};\n//# sourceMappingURL=./Humaaans.map", "import { fontStore } from \"framer\";\nfontStore.loadWebFontsFromSelectors([]);\nexport const fonts = [];\nexport const css = [\".framer-ObCnz .framer-styles-preset-1pxi0vs:not(.rich-text-wrapper), .framer-ObCnz .framer-styles-preset-1pxi0vs.rich-text-wrapper a { --framer-link-current-text-color: #111111; --framer-link-current-text-decoration: underline; --framer-link-hover-text-color: #0088ff; --framer-link-hover-text-decoration: underline; --framer-link-text-color: #ffffff; --framer-link-text-decoration: none; }\"];\nexport const className = \"framer-ObCnz\";\nexport const __FramerMetadata__ = {\n  \"exports\": {\n    \"fonts\": {\n      \"type\": \"variable\",\n      \"annotations\": {\n        \"framerContractVersion\": \"1\"\n      }\n    },\n    \"className\": {\n      \"type\": \"variable\",\n      \"annotations\": {\n        \"framerContractVersion\": \"1\"\n      }\n    },\n    \"css\": {\n      \"type\": \"variable\",\n      \"annotations\": {\n        \"framerContractVersion\": \"1\"\n      }\n    },\n    \"__FramerMetadata__\": {\n      \"type\": \"variable\"\n    }\n  }\n};", "// Generated by Framer (214386f)\nimport { jsx as _jsx, jsxs as _jsxs } from \"react/jsx-runtime\";\nimport { addFonts, Container, cx, GeneratedComponentContext, getFonts, Link, PropertyOverrides, removeHiddenBreakpointLayers, RichText, useHydratedBreakpointVariants, withCSS } from \"framer\";\nimport { LayoutGroup, motion } from \"framer-motion\";\nimport * as React from \"react\";\nimport Pattern from \"https://framerusercontent.com/modules/2rGdY3xNPdGAC1LGc2Ew/gQcpGdBaDKqalAQX5HN3/Pattern.js\";\nimport { Icon as Material } from \"https://framerusercontent.com/modules/6Ldpz1V0DkD45gXvi67I/PCgBX5d6MdQT7E7nhdXn/Material.js\";\nimport { Humaaans } from \"https://framerusercontent.com/modules/BTZy5VRk3psZMmSmB1ao/zgoCuAUPFRELIe1eqhIR/Humaaans.js\";\nimport * as sharedStyle from \"https://framerusercontent.com/modules/jnCYOLBN3FwV6SxkEWRK/NugyOsFMMND5XKK66Fym/t95NRiqV8.js\";\nimport metadataProvider from \"https://framerusercontent.com/modules/movI8BfXnI8PCFCQdLmJ/tlpBatuDLWpS1OrdHkE8/augiA20Il.js\";\nconst MaterialFonts = getFonts(Material);\nconst HumaaansFonts = getFonts(Humaaans);\nconst PatternFonts = getFonts(Pattern);\nconst cycleOrder = [\"WQLkyLRf1\", \"sEuMG215R\", \"BzWr9yGzT\"];\nconst breakpoints = {\n  BzWr9yGzT: \"(max-width: 809px)\",\n  sEuMG215R: \"(min-width: 810px) and (max-width: 1199px)\",\n  WQLkyLRf1: \"(min-width: 1200px)\"\n};\nconst isBrowser = () => typeof document !== \"undefined\";\nconst variantClassNames = {\n  BzWr9yGzT: \"framer-v-1ea8ffd\",\n  sEuMG215R: \"framer-v-1n5fqya\",\n  WQLkyLRf1: \"framer-v-72rtr7\"\n};\nif (isBrowser()) {\n  removeHiddenBreakpointLayers(\"WQLkyLRf1\", breakpoints, variantClassNames);\n}\nconst humanReadableVariantMap = {\n  Desktop: \"WQLkyLRf1\",\n  Phone: \"BzWr9yGzT\",\n  Tablet: \"sEuMG215R\"\n};\nconst transitions = {\n  default: {\n    duration: 0\n  }\n};\nconst transformTemplate = (_, t) => `${t} rotate(-45deg)`;\nconst transformTemplate1 = (_, t) => `translateX(-50%) ${t}`;\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 === \"BzWr9yGzT\") return !isBrowser();\n    return true;\n  };\n  const isDisplayed1 = () => {\n    if ([\"sEuMG215R\", \"BzWr9yGzT\"].includes(baseVariant)) return !isBrowser();\n    return true;\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-wumzE\", sharedStyle.className),\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__*/_jsx(motion.div, {\n            className: \"framer-dt0e6i\",\n            \"data-framer-name\": \"Hero\",\n            name: \"Hero\",\n            children: /*#__PURE__*/_jsxs(motion.div, {\n              className: \"framer-1osjsxq\",\n              \"data-framer-name\": \"Content\",\n              name: \"Content\",\n              children: [/*#__PURE__*/_jsxs(motion.div, {\n                className: \"framer-1cuma6e\",\n                \"data-framer-name\": \"Left\",\n                name: \"Left\",\n                children: [/*#__PURE__*/_jsx(PropertyOverrides, {\n                  breakpoint: baseVariant,\n                  overrides: {\n                    BzWr9yGzT: {\n                      children: /*#__PURE__*/_jsx(React.Fragment, {\n                        children: /*#__PURE__*/_jsx(\"h1\", {\n                          style: {\n                            \"--font-selector\": \"R0Y7TW9udHNlcnJhdC03MDA=\",\n                            \"--framer-font-family\": '\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\n                            \"--framer-font-size\": \"32px\",\n                            \"--framer-font-weight\": \"700\",\n                            \"--framer-line-height\": \"1em\",\n                            \"--framer-text-alignment\": \"left\",\n                            \"--framer-text-color\": \"rgb(255, 255, 255)\",\n                            \"--framer-text-decoration\": \"underline\",\n                            \"--framer-text-transform\": \"uppercase\"\n                          },\n                          children: /*#__PURE__*/_jsx(Link, {\n                            href: \"https://faetton.com\",\n                            openInNewTab: true,\n                            smoothScroll: false,\n                            children: /*#__PURE__*/_jsx(\"a\", {\n                              className: \"framer-styles-preset-1pxi0vs\",\n                              \"data-styles-preset\": \"t95NRiqV8\",\n                              children: \"FAETTON.COM\"\n                            })\n                          })\n                        })\n                      }),\n                      viewBox: \"0 0 246 32\"\n                    },\n                    sEuMG215R: {\n                      children: /*#__PURE__*/_jsx(React.Fragment, {\n                        children: /*#__PURE__*/_jsx(\"h1\", {\n                          style: {\n                            \"--font-selector\": \"R0Y7TW9udHNlcnJhdC03MDA=\",\n                            \"--framer-font-family\": '\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\n                            \"--framer-font-size\": \"128px\",\n                            \"--framer-font-weight\": \"700\",\n                            \"--framer-line-height\": \"1em\",\n                            \"--framer-text-alignment\": \"center\",\n                            \"--framer-text-color\": \"rgb(255, 255, 255)\",\n                            \"--framer-text-decoration\": \"underline\",\n                            \"--framer-text-transform\": \"uppercase\"\n                          },\n                          children: /*#__PURE__*/_jsx(Link, {\n                            href: \"https://faetton.com\",\n                            openInNewTab: true,\n                            smoothScroll: false,\n                            children: /*#__PURE__*/_jsx(\"a\", {\n                              className: \"framer-styles-preset-1pxi0vs\",\n                              \"data-styles-preset\": \"t95NRiqV8\",\n                              children: \"FAETTON.COM\"\n                            })\n                          })\n                        })\n                      }),\n                      viewBox: \"0 0 985 128\"\n                    }\n                  },\n                  children: /*#__PURE__*/_jsx(RichText, {\n                    __fromCanvasComponent: true,\n                    children: /*#__PURE__*/_jsx(React.Fragment, {\n                      children: /*#__PURE__*/_jsx(\"h1\", {\n                        style: {\n                          \"--font-selector\": \"R0Y7TW9udHNlcnJhdC03MDA=\",\n                          \"--framer-font-family\": '\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\n                          \"--framer-font-size\": \"147.53239329268294px\",\n                          \"--framer-font-weight\": \"700\",\n                          \"--framer-line-height\": \"1em\",\n                          \"--framer-text-alignment\": \"left\",\n                          \"--framer-text-color\": \"rgb(255, 255, 255)\",\n                          \"--framer-text-decoration\": \"underline\",\n                          \"--framer-text-transform\": \"uppercase\"\n                        },\n                        children: /*#__PURE__*/_jsx(Link, {\n                          href: \"https://faetton.com\",\n                          openInNewTab: true,\n                          smoothScroll: false,\n                          children: /*#__PURE__*/_jsx(\"a\", {\n                            className: \"framer-styles-preset-1pxi0vs\",\n                            \"data-styles-preset\": \"t95NRiqV8\",\n                            children: \"FAETTON.COM\"\n                          })\n                        })\n                      })\n                    }),\n                    className: \"framer-uufl2r\",\n                    fonts: [\"GF;Montserrat-700\"],\n                    verticalAlignment: \"top\",\n                    viewBox: \"0 0 1135 148\",\n                    withExternalLayout: true\n                  })\n                }), /*#__PURE__*/_jsx(PropertyOverrides, {\n                  breakpoint: baseVariant,\n                  overrides: {\n                    BzWr9yGzT: {\n                      children: /*#__PURE__*/_jsx(React.Fragment, {\n                        children: /*#__PURE__*/_jsx(\"h1\", {\n                          style: {\n                            \"--font-selector\": \"R0Y7TGVhZ3VlIEdvdGhpYy1yZWd1bGFy\",\n                            \"--framer-font-family\": '\"League Gothic\", \"League Gothic Placeholder\", sans-serif',\n                            \"--framer-font-size\": \"32px\",\n                            \"--framer-line-height\": \"1em\",\n                            \"--framer-text-alignment\": \"left\",\n                            \"--framer-text-color\": \"rgb(139, 148, 158)\",\n                            \"--framer-text-transform\": \"uppercase\"\n                          },\n                          children: \"Pol\\xedtica de\"\n                        })\n                      }),\n                      viewBox: \"0 0 106 32\"\n                    },\n                    sEuMG215R: {\n                      children: /*#__PURE__*/_jsx(React.Fragment, {\n                        children: /*#__PURE__*/_jsx(\"h1\", {\n                          style: {\n                            \"--font-selector\": \"R0Y7TGVhZ3VlIEdvdGhpYy1yZWd1bGFy\",\n                            \"--framer-font-family\": '\"League Gothic\", \"League Gothic Placeholder\", sans-serif',\n                            \"--framer-font-size\": \"128px\",\n                            \"--framer-line-height\": \"1em\",\n                            \"--framer-text-alignment\": \"center\",\n                            \"--framer-text-color\": \"rgb(139, 148, 158)\",\n                            \"--framer-text-transform\": \"uppercase\"\n                          },\n                          children: \"Pol\\xedtica de\"\n                        })\n                      }),\n                      viewBox: \"0 0 424 128\"\n                    }\n                  },\n                  children: /*#__PURE__*/_jsx(RichText, {\n                    __fromCanvasComponent: true,\n                    children: /*#__PURE__*/_jsx(React.Fragment, {\n                      children: /*#__PURE__*/_jsx(\"h1\", {\n                        style: {\n                          \"--font-selector\": \"R0Y7TGVhZ3VlIEdvdGhpYy1yZWd1bGFy\",\n                          \"--framer-font-family\": '\"League Gothic\", \"League Gothic Placeholder\", sans-serif',\n                          \"--framer-font-size\": \"289.6341463414634px\",\n                          \"--framer-line-height\": \"1em\",\n                          \"--framer-text-alignment\": \"left\",\n                          \"--framer-text-color\": \"rgb(139, 148, 158)\",\n                          \"--framer-text-transform\": \"uppercase\"\n                        },\n                        children: \"Pol\\xedtica de\"\n                      })\n                    }),\n                    className: \"framer-1avhvl3\",\n                    fonts: [\"GF;League Gothic-regular\"],\n                    verticalAlignment: \"top\",\n                    viewBox: \"0 0 960 290\",\n                    withExternalLayout: true\n                  })\n                }), /*#__PURE__*/_jsx(PropertyOverrides, {\n                  breakpoint: baseVariant,\n                  overrides: {\n                    BzWr9yGzT: {\n                      children: /*#__PURE__*/_jsx(React.Fragment, {\n                        children: /*#__PURE__*/_jsx(\"p\", {\n                          style: {\n                            \"--font-selector\": \"R0Y7RE0gU2Fucy01MDA=\",\n                            \"--framer-font-family\": '\"DM Sans\", sans-serif',\n                            \"--framer-font-size\": \"20px\",\n                            \"--framer-font-weight\": \"500\",\n                            \"--framer-line-height\": \"1em\",\n                            \"--framer-text-alignment\": \"left\",\n                            \"--framer-text-color\": \"rgb(255, 255, 255)\"\n                          },\n                          children: \"Frete\"\n                        })\n                      }),\n                      viewBox: \"0 0 49 20\"\n                    },\n                    sEuMG215R: {\n                      children: /*#__PURE__*/_jsx(React.Fragment, {\n                        children: /*#__PURE__*/_jsx(\"p\", {\n                          style: {\n                            \"--font-selector\": \"R0Y7RE0gU2Fucy01MDA=\",\n                            \"--framer-font-family\": '\"DM Sans\", sans-serif',\n                            \"--framer-font-size\": \"155px\",\n                            \"--framer-font-weight\": \"500\",\n                            \"--framer-line-height\": \"1em\",\n                            \"--framer-text-alignment\": \"center\",\n                            \"--framer-text-color\": \"rgb(255, 255, 255)\"\n                          },\n                          children: \"Frete\"\n                        })\n                      }),\n                      viewBox: undefined\n                    }\n                  },\n                  children: /*#__PURE__*/_jsx(RichText, {\n                    __fromCanvasComponent: true,\n                    children: /*#__PURE__*/_jsx(React.Fragment, {\n                      children: /*#__PURE__*/_jsx(\"p\", {\n                        style: {\n                          \"--font-selector\": \"R0Y7RE0gU2Fucy01MDA=\",\n                          \"--framer-font-family\": '\"DM Sans\", sans-serif',\n                          \"--framer-font-size\": \"165.2173913043478px\",\n                          \"--framer-font-weight\": \"500\",\n                          \"--framer-line-height\": \"1em\",\n                          \"--framer-text-alignment\": \"left\",\n                          \"--framer-text-color\": \"rgb(255, 255, 255)\"\n                        },\n                        children: \"Frete\"\n                      })\n                    }),\n                    className: \"framer-3kt7iy\",\n                    fonts: [\"GF;DM Sans-500\"],\n                    verticalAlignment: \"top\",\n                    viewBox: \"0 0 404 165\",\n                    withExternalLayout: true\n                  })\n                })]\n              }), /*#__PURE__*/_jsx(Container, {\n                className: \"framer-1idv6ge-container\",\n                transformTemplate: transformTemplate,\n                children: /*#__PURE__*/_jsx(Material, {\n                  color: \"rgb(255, 255, 255)\",\n                  height: \"100%\",\n                  iconSearch: \"Home\",\n                  iconSelection: \"LocalAirport\",\n                  iconStyle15: \"Filled\",\n                  iconStyle2: \"Filled\",\n                  iconStyle7: \"Filled\",\n                  id: \"aJwrLOLGl\",\n                  layoutId: \"aJwrLOLGl\",\n                  mirrored: false,\n                  selectByList: true,\n                  style: {\n                    height: \"100%\",\n                    width: \"100%\"\n                  },\n                  width: \"100%\"\n                })\n              })]\n            })\n          }), /*#__PURE__*/_jsxs(motion.div, {\n            className: \"framer-133h1ov\",\n            \"data-framer-name\": \"Text\",\n            name: \"Text\",\n            children: [/*#__PURE__*/_jsxs(motion.div, {\n              className: \"framer-13t5h9d\",\n              \"data-framer-name\": \"Content\",\n              name: \"Content\",\n              children: [/*#__PURE__*/_jsxs(motion.div, {\n                className: \"framer-iishai\",\n                \"data-framer-name\": \"Paragraphs\",\n                name: \"Paragraphs\",\n                children: [/*#__PURE__*/_jsx(PropertyOverrides, {\n                  breakpoint: baseVariant,\n                  overrides: {\n                    BzWr9yGzT: {\n                      children: /*#__PURE__*/_jsx(React.Fragment, {\n                        children: /*#__PURE__*/_jsx(\"h2\", {\n                          style: {\n                            \"--font-selector\": \"R0Y7TGVhZ3VlIEdvdGhpYy1yZWd1bGFy\",\n                            \"--framer-font-family\": '\"League Gothic\", \"League Gothic Placeholder\", sans-serif',\n                            \"--framer-font-size\": \"32px\",\n                            \"--framer-letter-spacing\": \"0px\",\n                            \"--framer-text-alignment\": \"left\"\n                          },\n                          children: \"Pol\\xedtica de Frete\"\n                        })\n                      })\n                    },\n                    sEuMG215R: {\n                      children: /*#__PURE__*/_jsx(React.Fragment, {\n                        children: /*#__PURE__*/_jsx(\"h2\", {\n                          style: {\n                            \"--font-selector\": \"R0Y7TGVhZ3VlIEdvdGhpYy1yZWd1bGFy\",\n                            \"--framer-font-family\": '\"League Gothic\", \"League Gothic Placeholder\", sans-serif',\n                            \"--framer-font-size\": \"40px\",\n                            \"--framer-text-alignment\": \"left\"\n                          },\n                          children: \"Pol\\xedtica de Frete\"\n                        })\n                      })\n                    }\n                  },\n                  children: /*#__PURE__*/_jsx(RichText, {\n                    __fromCanvasComponent: true,\n                    children: /*#__PURE__*/_jsx(React.Fragment, {\n                      children: /*#__PURE__*/_jsx(\"h2\", {\n                        style: {\n                          \"--font-selector\": \"R0Y7TGVhZ3VlIEdvdGhpYy1yZWd1bGFy\",\n                          \"--framer-font-family\": '\"League Gothic\", \"League Gothic Placeholder\", sans-serif',\n                          \"--framer-font-size\": \"48px\",\n                          \"--framer-text-alignment\": \"left\"\n                        },\n                        children: \"Pol\\xedtica de Frete\"\n                      })\n                    }),\n                    className: \"framer-1evnk53\",\n                    fonts: [\"GF;League Gothic-regular\"],\n                    verticalAlignment: \"top\",\n                    withExternalLayout: true\n                  })\n                }), /*#__PURE__*/_jsx(RichText, {\n                  __fromCanvasComponent: true,\n                  children: /*#__PURE__*/_jsx(React.Fragment, {\n                    children: /*#__PURE__*/_jsx(\"h3\", {\n                      style: {\n                        \"--font-selector\": \"R0Y7RE0gU2Fucy03MDA=\",\n                        \"--framer-font-family\": '\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\n                        \"--framer-font-size\": \"20px\",\n                        \"--framer-font-weight\": \"700\",\n                        \"--framer-letter-spacing\": \"-0.025em\",\n                        \"--framer-line-height\": \"1.5em\",\n                        \"--framer-text-alignment\": \"left\"\n                      },\n                      children: \"N\\xf3s da FAETTON estamos extremamente orgulhosos em oferecer FRETE GR\\xc1TIS em compras a partir de X valor (dependendo da \\xe9poca do ano, basta visualizar a mensagem no topo da p\\xe1gina em qualquer uma de nossas lojas) em todos os pedidos para mais de 160 pa\\xedses no mundo todo. Isso nos deixa extremamente felizes sabendo que podemos enviar nossos produtos para pessoas de todos os lugares. Continuaremos a fazer isso e melhorar nossos servi\\xe7os para ir al\\xe9m de todas as expectativas!\"\n                    })\n                  }),\n                  className: \"framer-12au1rz\",\n                  fonts: [\"GF;DM Sans-700\"],\n                  verticalAlignment: \"top\",\n                  withExternalLayout: true\n                }), /*#__PURE__*/_jsx(RichText, {\n                  __fromCanvasComponent: true,\n                  children: /*#__PURE__*/_jsx(React.Fragment, {\n                    children: /*#__PURE__*/_jsxs(\"h3\", {\n                      style: {\n                        \"--font-selector\": \"R0Y7RE0gU2Fucy1yZWd1bGFy\",\n                        \"--framer-font-family\": '\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\n                        \"--framer-font-size\": \"20px\",\n                        \"--framer-letter-spacing\": \"-0.025em\",\n                        \"--framer-line-height\": \"1.5em\",\n                        \"--framer-text-alignment\": \"left\"\n                      },\n                      children: [/*#__PURE__*/_jsx(\"span\", {\n                        style: {\n                          \"--font-selector\": \"R0Y7RE0gU2Fucy03MDA=\",\n                          \"--framer-font-weight\": \"700\"\n                        },\n                        children: \"DE ONDE O MEU PEDIDO EST\\xc1 SENDO ENVIADO? \"\n                      }), /*#__PURE__*/_jsx(\"br\", {}), \"Todos os pedidos ser\\xe3o enviados diretamente de um dos nossos ateli\\xeas que ficam na Europa, Estados Unidos ou \\xc1sia.\"]\n                    })\n                  }),\n                  className: \"framer-1h8wta7\",\n                  fonts: [\"GF;DM Sans-regular\", \"GF;DM Sans-700\"],\n                  verticalAlignment: \"top\",\n                  withExternalLayout: true\n                }), /*#__PURE__*/_jsx(RichText, {\n                  __fromCanvasComponent: true,\n                  children: /*#__PURE__*/_jsx(React.Fragment, {\n                    children: /*#__PURE__*/_jsxs(\"h3\", {\n                      style: {\n                        \"--font-selector\": \"R0Y7RE0gU2Fucy1yZWd1bGFy\",\n                        \"--framer-font-family\": '\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\n                        \"--framer-font-size\": \"20px\",\n                        \"--framer-letter-spacing\": \"-0.025em\",\n                        \"--framer-line-height\": \"1.5em\",\n                        \"--framer-text-alignment\": \"left\"\n                      },\n                      children: [/*#__PURE__*/_jsx(\"span\", {\n                        style: {\n                          \"--font-selector\": \"R0Y7RE0gU2Fucy03MDA=\",\n                          \"--framer-font-weight\": \"700\"\n                        },\n                        children: \"VOC\\xcaS ENVIAM PARA O MUNDO TODO?\"\n                      }), /*#__PURE__*/_jsx(\"br\", {}), /*#__PURE__*/_jsx(\"span\", {\n                        style: {\n                          \"--font-selector\": \"R0Y7RE0gU2Fucy03MDA=\",\n                          \"--framer-font-weight\": \"700\"\n                        },\n                        children: \" \"\n                      }), \"Sim, este \\xe9 um dos nossos melhores servi\\xe7os que oferecemos aos nossos clientes. N\\xf3s enviamos para o mundo todo em mais de 160 pa\\xedses. No entanto, pode haver alguns locais em que n\\xe3o podemos enviar. Se este for o caso, voc\\xea ser\\xe1 contatado como um estado de emerg\\xeancia, recebendo um reembolso total de suas mercadorias.\"]\n                    })\n                  }),\n                  className: \"framer-1ci50my\",\n                  fonts: [\"GF;DM Sans-regular\", \"GF;DM Sans-700\"],\n                  verticalAlignment: \"top\",\n                  withExternalLayout: true\n                })]\n              }), /*#__PURE__*/_jsx(Container, {\n                className: \"framer-13gr367-container\",\n                children: /*#__PURE__*/_jsx(Humaaans, {\n                  bodySelection: \"Trench\",\n                  direction: true,\n                  hair: \"rgb(51, 51, 51)\",\n                  headSelection: \"Hijab\",\n                  height: \"100%\",\n                  id: \"IuK9V8qXW\",\n                  isStanding: true,\n                  layoutId: \"IuK9V8qXW\",\n                  sittingSelection: \"Baggy\",\n                  skin: \"rgb(0, 0, 0)\",\n                  standingSelection: \"Baggy\",\n                  style: {\n                    height: \"100%\",\n                    width: \"100%\"\n                  },\n                  width: \"100%\"\n                })\n              })]\n            }), /*#__PURE__*/_jsx(Container, {\n              className: \"framer-1s8bvwt-container\",\n              children: /*#__PURE__*/_jsx(Pattern, {\n                back: \"rgb(240, 242, 245)\",\n                diagonal: true,\n                direction: \"left\",\n                duration: 5,\n                front: \"rgb(0, 0, 0)\",\n                height: \"100%\",\n                id: \"AWAM0rEa9\",\n                layoutId: \"AWAM0rEa9\",\n                patternType: \"polka\",\n                radius: 0,\n                scale: 30,\n                shouldAnimate: false,\n                style: {\n                  height: \"100%\",\n                  width: \"100%\"\n                },\n                width: \"100%\"\n              })\n            })]\n          }), /*#__PURE__*/_jsx(motion.div, {\n            className: \"framer-1bmd2g6\",\n            \"data-framer-name\": \"Shapes\",\n            name: \"Shapes\",\n            children: /*#__PURE__*/_jsxs(motion.div, {\n              className: \"framer-104t2dj\",\n              children: [/*#__PURE__*/_jsx(Container, {\n                className: \"framer-1ulc9je-container\",\n                children: /*#__PURE__*/_jsx(Humaaans, {\n                  bodySelection: \"Turtle\",\n                  direction: false,\n                  hair: \"rgb(51, 51, 51)\",\n                  headSelection: \"Hijab\",\n                  height: \"100%\",\n                  id: \"q1VdGbRYQ\",\n                  isStanding: true,\n                  layoutId: \"q1VdGbRYQ\",\n                  sittingSelection: \"Baggy\",\n                  skin: \"rgb(0, 0, 0)\",\n                  standingSelection: \"Baggy\",\n                  style: {\n                    height: \"100%\",\n                    width: \"100%\"\n                  },\n                  width: \"100%\"\n                })\n              }), /*#__PURE__*/_jsx(Container, {\n                className: \"framer-106e30l-container\",\n                children: /*#__PURE__*/_jsx(Humaaans, {\n                  bodySelection: \"Jacket\",\n                  direction: false,\n                  hair: \"rgb(51, 51, 51)\",\n                  headSelection: \"Long\",\n                  height: \"100%\",\n                  id: \"PoYY2WeoG\",\n                  isStanding: true,\n                  layoutId: \"PoYY2WeoG\",\n                  sittingSelection: \"Baggy\",\n                  skin: \"rgb(0, 0, 0)\",\n                  standingSelection: \"Baggy\",\n                  style: {\n                    height: \"100%\",\n                    width: \"100%\"\n                  },\n                  width: \"100%\"\n                })\n              }), /*#__PURE__*/_jsx(Container, {\n                className: \"framer-58yr7q-container\",\n                children: /*#__PURE__*/_jsx(Humaaans, {\n                  bodySelection: \"Jacket2\",\n                  direction: false,\n                  hair: \"rgb(51, 51, 51)\",\n                  headSelection: \"Curly\",\n                  height: \"100%\",\n                  id: \"fBaqJjhsO\",\n                  isStanding: true,\n                  layoutId: \"fBaqJjhsO\",\n                  sittingSelection: \"Skinny\",\n                  skin: \"rgb(0, 0, 0)\",\n                  standingSelection: \"Baggy\",\n                  style: {\n                    height: \"100%\",\n                    width: \"100%\"\n                  },\n                  width: \"100%\"\n                })\n              }), isDisplayed() && /*#__PURE__*/_jsx(Container, {\n                className: \"framer-1e0c6uv-container hidden-1ea8ffd\",\n                children: /*#__PURE__*/_jsx(Humaaans, {\n                  bodySelection: \"Trench\",\n                  direction: false,\n                  hair: \"rgb(51, 51, 51)\",\n                  headSelection: \"Turban2\",\n                  height: \"100%\",\n                  id: \"Ea9Thd3C_\",\n                  isStanding: true,\n                  layoutId: \"Ea9Thd3C_\",\n                  sittingSelection: \"Baggy\",\n                  skin: \"rgb(0, 0, 0)\",\n                  standingSelection: \"Baggy\",\n                  style: {\n                    height: \"100%\",\n                    width: \"100%\"\n                  },\n                  width: \"100%\"\n                })\n              }), isDisplayed1() && /*#__PURE__*/_jsx(Container, {\n                className: \"framer-92e5o3-container hidden-1n5fqya hidden-1ea8ffd\",\n                children: /*#__PURE__*/_jsx(Humaaans, {\n                  bodySelection: \"Trench\",\n                  direction: false,\n                  hair: \"rgb(51, 51, 51)\",\n                  headSelection: \"Hijab\",\n                  height: \"100%\",\n                  id: \"l2wzphAMp\",\n                  isStanding: true,\n                  layoutId: \"l2wzphAMp\",\n                  sittingSelection: \"Wheelchair\",\n                  skin: \"rgb(0, 0, 0)\",\n                  standingSelection: \"Baggy\",\n                  style: {\n                    height: \"100%\",\n                    width: \"100%\"\n                  },\n                  width: \"100%\"\n                })\n              }), isDisplayed1() && /*#__PURE__*/_jsx(Container, {\n                className: \"framer-1hpdnib-container hidden-1n5fqya hidden-1ea8ffd\",\n                children: /*#__PURE__*/_jsx(Humaaans, {\n                  bodySelection: \"Pointing2\",\n                  direction: false,\n                  hair: \"rgb(51, 51, 51)\",\n                  headSelection: \"Curly\",\n                  height: \"100%\",\n                  id: \"nofardATy\",\n                  isStanding: true,\n                  layoutId: \"nofardATy\",\n                  sittingSelection: \"Wheelchair\",\n                  skin: \"rgb(0, 0, 0)\",\n                  standingSelection: \"Baggy\",\n                  style: {\n                    height: \"100%\",\n                    width: \"100%\"\n                  },\n                  width: \"100%\"\n                })\n              })]\n            })\n          }), /*#__PURE__*/_jsx(motion.div, {\n            className: \"framer-1816yvj\",\n            \"data-framer-name\": \"Text\",\n            name: \"Text\",\n            children: /*#__PURE__*/_jsxs(motion.div, {\n              className: \"framer-1r0zx4i\",\n              \"data-framer-name\": \"Content\",\n              name: \"Content\",\n              children: [/*#__PURE__*/_jsxs(motion.div, {\n                className: \"framer-1059rjc\",\n                \"data-framer-name\": \"Paragraphs\",\n                name: \"Paragraphs\",\n                children: [/*#__PURE__*/_jsx(PropertyOverrides, {\n                  breakpoint: baseVariant,\n                  overrides: {\n                    BzWr9yGzT: {\n                      children: /*#__PURE__*/_jsx(React.Fragment, {\n                        children: /*#__PURE__*/_jsx(\"h2\", {\n                          style: {\n                            \"--font-selector\": \"R0Y7TGVhZ3VlIEdvdGhpYy1yZWd1bGFy\",\n                            \"--framer-font-family\": '\"League Gothic\", \"League Gothic Placeholder\", sans-serif',\n                            \"--framer-font-size\": \"32px\",\n                            \"--framer-letter-spacing\": \"0px\",\n                            \"--framer-text-alignment\": \"left\"\n                          },\n                          children: \"Prazos de Entrega\"\n                        })\n                      })\n                    },\n                    sEuMG215R: {\n                      children: /*#__PURE__*/_jsx(React.Fragment, {\n                        children: /*#__PURE__*/_jsx(\"h2\", {\n                          style: {\n                            \"--font-selector\": \"R0Y7TGVhZ3VlIEdvdGhpYy1yZWd1bGFy\",\n                            \"--framer-font-family\": '\"League Gothic\", \"League Gothic Placeholder\", sans-serif',\n                            \"--framer-font-size\": \"40px\",\n                            \"--framer-text-alignment\": \"left\"\n                          },\n                          children: \"Prazos de Entrega\"\n                        })\n                      })\n                    }\n                  },\n                  children: /*#__PURE__*/_jsx(RichText, {\n                    __fromCanvasComponent: true,\n                    children: /*#__PURE__*/_jsx(React.Fragment, {\n                      children: /*#__PURE__*/_jsx(\"h2\", {\n                        style: {\n                          \"--font-selector\": \"R0Y7TGVhZ3VlIEdvdGhpYy1yZWd1bGFy\",\n                          \"--framer-font-family\": '\"League Gothic\", \"League Gothic Placeholder\", sans-serif',\n                          \"--framer-font-size\": \"48px\",\n                          \"--framer-text-alignment\": \"left\"\n                        },\n                        children: \"Prazos de Entrega\"\n                      })\n                    }),\n                    className: \"framer-hyog6e\",\n                    fonts: [\"GF;League Gothic-regular\"],\n                    verticalAlignment: \"top\",\n                    withExternalLayout: true\n                  })\n                }), /*#__PURE__*/_jsx(PropertyOverrides, {\n                  breakpoint: baseVariant,\n                  overrides: {\n                    BzWr9yGzT: {\n                      children: /*#__PURE__*/_jsx(React.Fragment, {\n                        children: /*#__PURE__*/_jsxs(\"h3\", {\n                          style: {\n                            \"--font-selector\": \"R0Y7RE0gU2Fucy03MDA=\",\n                            \"--framer-font-family\": '\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\n                            \"--framer-font-size\": \"20px\",\n                            \"--framer-font-weight\": \"700\",\n                            \"--framer-letter-spacing\": \"-0.05em\",\n                            \"--framer-line-height\": \"1.3em\",\n                            \"--framer-text-alignment\": \"left\"\n                          },\n                          children: [/*#__PURE__*/_jsx(\"span\", {\n                            style: {\n                              \"--framer-font-size\": \"32px\"\n                            },\n                            children: \"Por causa de nossas op\\xe7\\xf5es de envios mundiais. Os tempos de envio variam de acordo com a localiza\\xe7\\xe3o. \"\n                          }), /*#__PURE__*/_jsx(\"br\", {}), /*#__PURE__*/_jsx(\"br\", {}), /*#__PURE__*/_jsx(\"span\", {\n                            style: {\n                              \"--framer-font-size\": \"32px\"\n                            },\n                            children: \"Aqui est\\xe3o as estimativas m\\xe9dia. Em rela\\xe7\\xe3o entregas no Brasil estamos sujeitos a trabalhar somente com a \\xfanica empresa de transporte nacional, infelizmente n\\xe3o podemos controlar ou prever quando os servi\\xe7os dos Correios entrar\\xe3o em greve! Segue a baixo a tabela de prazos.\"\n                          })]\n                        })\n                      })\n                    }\n                  },\n                  children: /*#__PURE__*/_jsx(RichText, {\n                    __fromCanvasComponent: true,\n                    children: /*#__PURE__*/_jsx(React.Fragment, {\n                      children: /*#__PURE__*/_jsxs(\"h3\", {\n                        style: {\n                          \"--font-selector\": \"R0Y7RE0gU2Fucy03MDA=\",\n                          \"--framer-font-family\": '\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\n                          \"--framer-font-size\": \"32px\",\n                          \"--framer-font-weight\": \"700\",\n                          \"--framer-letter-spacing\": \"-0.05em\",\n                          \"--framer-line-height\": \"1.3em\",\n                          \"--framer-text-alignment\": \"left\"\n                        },\n                        children: [\"Por causa de nossas op\\xe7\\xf5es de envios mundiais. Os tempos de envio variam de acordo com a localiza\\xe7\\xe3o. \", /*#__PURE__*/_jsx(\"br\", {}), /*#__PURE__*/_jsx(\"br\", {}), \"Aqui est\\xe3o as estimativas m\\xe9dia. Em rela\\xe7\\xe3o entregas no Brasil estamos sujeitos a trabalhar somente com a \\xfanica empresa de transporte nacional, infelizmente n\\xe3o podemos controlar ou prever quando os servi\\xe7os dos Correios entrar\\xe3o em greve! Segue a baixo a tabela de prazos.\"]\n                      })\n                    }),\n                    className: \"framer-mwvj5e\",\n                    fonts: [\"GF;DM Sans-700\"],\n                    verticalAlignment: \"top\",\n                    withExternalLayout: true\n                  })\n                })]\n              }), /*#__PURE__*/_jsx(Container, {\n                className: \"framer-iyi1c9-container\",\n                children: /*#__PURE__*/_jsx(Humaaans, {\n                  bodySelection: \"Hoodie\",\n                  direction: true,\n                  hair: \"rgb(51, 51, 51)\",\n                  headSelection: \"Short2\",\n                  height: \"100%\",\n                  id: \"iADSPjJpk\",\n                  isStanding: true,\n                  layoutId: \"iADSPjJpk\",\n                  sittingSelection: \"Wheelchair\",\n                  skin: \"rgb(0, 0, 0)\",\n                  standingSelection: \"Baggy\",\n                  style: {\n                    height: \"100%\",\n                    width: \"100%\"\n                  },\n                  width: \"100%\"\n                })\n              })]\n            })\n          }), /*#__PURE__*/_jsxs(motion.div, {\n            className: \"framer-136w9f\",\n            \"data-framer-name\": \"FAQ\",\n            name: \"FAQ\",\n            children: [/*#__PURE__*/_jsx(PropertyOverrides, {\n              breakpoint: baseVariant,\n              overrides: {\n                BzWr9yGzT: {\n                  children: /*#__PURE__*/_jsx(React.Fragment, {\n                    children: /*#__PURE__*/_jsx(\"h2\", {\n                      style: {\n                        \"--font-selector\": \"R0Y7VW5ib3VuZGVkLTcwMA==\",\n                        \"--framer-font-family\": '\"Unbounded\", sans-serif',\n                        \"--framer-font-size\": \"32px\",\n                        \"--framer-font-weight\": \"700\",\n                        \"--framer-text-alignment\": \"center\",\n                        \"--framer-text-color\": \"rgb(164, 14, 76)\"\n                      },\n                      children: \"Worldwide Delivery Times\"\n                    })\n                  }),\n                  transformTemplate: transformTemplate1\n                },\n                sEuMG215R: {\n                  children: /*#__PURE__*/_jsx(React.Fragment, {\n                    children: /*#__PURE__*/_jsx(\"h2\", {\n                      style: {\n                        \"--font-selector\": \"R0Y7VW5ib3VuZGVkLTcwMA==\",\n                        \"--framer-font-family\": '\"Unbounded\", sans-serif',\n                        \"--framer-font-size\": \"32px\",\n                        \"--framer-font-weight\": \"700\",\n                        \"--framer-text-alignment\": \"center\",\n                        \"--framer-text-color\": \"rgb(164, 14, 76)\"\n                      },\n                      children: \"Worldwide Delivery Times\"\n                    })\n                  })\n                }\n              },\n              children: /*#__PURE__*/_jsx(RichText, {\n                __fromCanvasComponent: true,\n                children: /*#__PURE__*/_jsx(React.Fragment, {\n                  children: /*#__PURE__*/_jsx(\"h2\", {\n                    style: {\n                      \"--font-selector\": \"R0Y7VW5ib3VuZGVkLTcwMA==\",\n                      \"--framer-font-family\": '\"Unbounded\", sans-serif',\n                      \"--framer-font-size\": \"48px\",\n                      \"--framer-font-weight\": \"700\",\n                      \"--framer-text-alignment\": \"center\",\n                      \"--framer-text-color\": \"rgb(164, 14, 76)\"\n                    },\n                    children: \"Worldwide Delivery Times\"\n                  })\n                }),\n                className: \"framer-c208ut\",\n                fonts: [\"GF;Unbounded-700\"],\n                verticalAlignment: \"top\",\n                withExternalLayout: true\n              })\n            }), /*#__PURE__*/_jsx(PropertyOverrides, {\n              breakpoint: baseVariant,\n              overrides: {\n                BzWr9yGzT: {\n                  children: /*#__PURE__*/_jsx(React.Fragment, {\n                    children: /*#__PURE__*/_jsx(\"h2\", {\n                      style: {\n                        \"--font-selector\": \"R0Y7VW5ib3VuZGVkLXJlZ3VsYXI=\",\n                        \"--framer-font-family\": '\"Unbounded\", sans-serif',\n                        \"--framer-font-size\": \"32px\",\n                        \"--framer-text-alignment\": \"left\",\n                        \"--framer-text-color\": \"rgb(139, 148, 158)\"\n                      },\n                      children: \"Prazos de entrega em todo o mundo\"\n                    })\n                  }),\n                  transformTemplate: transformTemplate1\n                },\n                sEuMG215R: {\n                  children: /*#__PURE__*/_jsx(React.Fragment, {\n                    children: /*#__PURE__*/_jsx(\"h2\", {\n                      style: {\n                        \"--font-selector\": \"R0Y7VW5ib3VuZGVkLXJlZ3VsYXI=\",\n                        \"--framer-font-family\": '\"Unbounded\", sans-serif',\n                        \"--framer-font-size\": \"32px\",\n                        \"--framer-text-alignment\": \"center\",\n                        \"--framer-text-color\": \"rgb(139, 148, 158)\"\n                      },\n                      children: \"Prazos de entrega em todo o mundo\"\n                    })\n                  })\n                }\n              },\n              children: /*#__PURE__*/_jsx(RichText, {\n                __fromCanvasComponent: true,\n                children: /*#__PURE__*/_jsx(React.Fragment, {\n                  children: /*#__PURE__*/_jsx(\"h2\", {\n                    style: {\n                      \"--font-selector\": \"R0Y7VW5ib3VuZGVkLXJlZ3VsYXI=\",\n                      \"--framer-font-family\": '\"Unbounded\", sans-serif',\n                      \"--framer-font-size\": \"19px\",\n                      \"--framer-text-alignment\": \"center\",\n                      \"--framer-text-color\": \"rgb(139, 148, 158)\"\n                    },\n                    children: \"Prazos de entrega em todo o mundo\"\n                  })\n                }),\n                className: \"framer-134wwhg\",\n                fonts: [\"GF;Unbounded-regular\"],\n                verticalAlignment: \"top\",\n                withExternalLayout: true\n              })\n            }), /*#__PURE__*/_jsxs(motion.div, {\n              className: \"framer-lms3jt\",\n              \"data-framer-name\": \"Questions Row\",\n              name: \"Questions Row\",\n              children: [/*#__PURE__*/_jsxs(motion.div, {\n                className: \"framer-1uemalu\",\n                \"data-framer-name\": \"Q&A\",\n                name: \"Q&A\",\n                children: [/*#__PURE__*/_jsx(RichText, {\n                  __fromCanvasComponent: true,\n                  children: /*#__PURE__*/_jsx(React.Fragment, {\n                    children: /*#__PURE__*/_jsx(\"h2\", {\n                      style: {\n                        \"--font-selector\": \"R0Y7V29yayBTYW5zLXJlZ3VsYXI=\",\n                        \"--framer-font-family\": '\"Work Sans\", \"Work Sans Placeholder\", sans-serif',\n                        \"--framer-font-size\": \"20px\",\n                        \"--framer-letter-spacing\": \"-0.025em\",\n                        \"--framer-line-height\": \"1.5em\",\n                        \"--framer-text-alignment\": \"left\",\n                        \"--framer-text-color\": \"rgb(164, 14, 76)\"\n                      },\n                      children: \"Brazil\"\n                    })\n                  }),\n                  className: \"framer-yx71up\",\n                  fonts: [\"GF;Work Sans-regular\"],\n                  verticalAlignment: \"top\",\n                  withExternalLayout: true\n                }), /*#__PURE__*/_jsx(RichText, {\n                  __fromCanvasComponent: true,\n                  children: /*#__PURE__*/_jsx(React.Fragment, {\n                    children: /*#__PURE__*/_jsx(\"h2\", {\n                      style: {\n                        \"--font-selector\": \"R0Y7V29yayBTYW5zLXJlZ3VsYXI=\",\n                        \"--framer-font-family\": '\"Work Sans\", \"Work Sans Placeholder\", sans-serif',\n                        \"--framer-line-height\": \"1.5em\",\n                        \"--framer-text-alignment\": \"left\"\n                      },\n                      children: \"15 - 30 dias \\xfateis / c\\xf3digo de rastreio: Dispon\\xedvel \"\n                    })\n                  }),\n                  className: \"framer-1ttx2qv\",\n                  fonts: [\"GF;Work Sans-regular\"],\n                  verticalAlignment: \"top\",\n                  withExternalLayout: true\n                })]\n              }), /*#__PURE__*/_jsxs(motion.div, {\n                className: \"framer-1ya84r9\",\n                \"data-framer-name\": \"Q&A\",\n                name: \"Q&A\",\n                children: [/*#__PURE__*/_jsx(RichText, {\n                  __fromCanvasComponent: true,\n                  children: /*#__PURE__*/_jsx(React.Fragment, {\n                    children: /*#__PURE__*/_jsx(\"h2\", {\n                      style: {\n                        \"--font-selector\": \"R0Y7V29yayBTYW5zLXJlZ3VsYXI=\",\n                        \"--framer-font-family\": '\"Work Sans\", \"Work Sans Placeholder\", sans-serif',\n                        \"--framer-font-size\": \"20px\",\n                        \"--framer-letter-spacing\": \"-0.025em\",\n                        \"--framer-line-height\": \"1.5em\",\n                        \"--framer-text-alignment\": \"left\",\n                        \"--framer-text-color\": \"rgb(164, 14, 76)\"\n                      },\n                      children: \"USA & Canada\"\n                    })\n                  }),\n                  className: \"framer-1farw96\",\n                  fonts: [\"GF;Work Sans-regular\"],\n                  verticalAlignment: \"top\",\n                  withExternalLayout: true\n                }), /*#__PURE__*/_jsx(RichText, {\n                  __fromCanvasComponent: true,\n                  children: /*#__PURE__*/_jsx(React.Fragment, {\n                    children: /*#__PURE__*/_jsx(\"h2\", {\n                      style: {\n                        \"--font-selector\": \"R0Y7V29yayBTYW5zLXJlZ3VsYXI=\",\n                        \"--framer-font-family\": '\"Work Sans\", \"Work Sans Placeholder\", sans-serif',\n                        \"--framer-line-height\": \"1.5em\",\n                        \"--framer-text-alignment\": \"left\"\n                      },\n                      children: \"10 - 20 business days / tracking code: Available\"\n                    })\n                  }),\n                  className: \"framer-mdirgo\",\n                  fonts: [\"GF;Work Sans-regular\"],\n                  verticalAlignment: \"top\",\n                  withExternalLayout: true\n                })]\n              }), /*#__PURE__*/_jsxs(motion.div, {\n                className: \"framer-26rkvc\",\n                \"data-framer-name\": \"Q&A\",\n                name: \"Q&A\",\n                children: [/*#__PURE__*/_jsx(RichText, {\n                  __fromCanvasComponent: true,\n                  children: /*#__PURE__*/_jsx(React.Fragment, {\n                    children: /*#__PURE__*/_jsx(\"h2\", {\n                      style: {\n                        \"--font-selector\": \"R0Y7V29yayBTYW5zLXJlZ3VsYXI=\",\n                        \"--framer-font-family\": '\"Work Sans\", \"Work Sans Placeholder\", sans-serif',\n                        \"--framer-font-size\": \"20px\",\n                        \"--framer-letter-spacing\": \"-0.025em\",\n                        \"--framer-line-height\": \"1.5em\",\n                        \"--framer-text-alignment\": \"left\",\n                        \"--framer-text-color\": \"rgb(164, 14, 76)\"\n                      },\n                      children: \"Europe\"\n                    })\n                  }),\n                  className: \"framer-1bfr76w\",\n                  fonts: [\"GF;Work Sans-regular\"],\n                  verticalAlignment: \"top\",\n                  withExternalLayout: true\n                }), /*#__PURE__*/_jsx(RichText, {\n                  __fromCanvasComponent: true,\n                  children: /*#__PURE__*/_jsx(React.Fragment, {\n                    children: /*#__PURE__*/_jsx(\"h2\", {\n                      style: {\n                        \"--font-selector\": \"R0Y7V29yayBTYW5zLXJlZ3VsYXI=\",\n                        \"--framer-font-family\": '\"Work Sans\", \"Work Sans Placeholder\", sans-serif',\n                        \"--framer-line-height\": \"1.5em\",\n                        \"--framer-text-alignment\": \"left\"\n                      },\n                      children: \"10 - 20 business days / tracking code: Available\"\n                    })\n                  }),\n                  className: \"framer-1sbb9df\",\n                  fonts: [\"GF;Work Sans-regular\"],\n                  verticalAlignment: \"top\",\n                  withExternalLayout: true\n                })]\n              }), /*#__PURE__*/_jsxs(motion.div, {\n                className: \"framer-l3o10m\",\n                \"data-framer-name\": \"Q&A\",\n                name: \"Q&A\",\n                children: [/*#__PURE__*/_jsx(RichText, {\n                  __fromCanvasComponent: true,\n                  children: /*#__PURE__*/_jsx(React.Fragment, {\n                    children: /*#__PURE__*/_jsx(\"h2\", {\n                      style: {\n                        \"--font-selector\": \"R0Y7V29yayBTYW5zLXJlZ3VsYXI=\",\n                        \"--framer-font-family\": '\"Work Sans\", \"Work Sans Placeholder\", sans-serif',\n                        \"--framer-font-size\": \"20px\",\n                        \"--framer-letter-spacing\": \"-0.025em\",\n                        \"--framer-line-height\": \"1.5em\",\n                        \"--framer-text-alignment\": \"left\",\n                        \"--framer-text-color\": \"rgb(164, 14, 76)\"\n                      },\n                      children: \"Asia\"\n                    })\n                  }),\n                  className: \"framer-lswdom\",\n                  fonts: [\"GF;Work Sans-regular\"],\n                  verticalAlignment: \"top\",\n                  withExternalLayout: true\n                }), /*#__PURE__*/_jsx(RichText, {\n                  __fromCanvasComponent: true,\n                  children: /*#__PURE__*/_jsx(React.Fragment, {\n                    children: /*#__PURE__*/_jsx(\"h2\", {\n                      style: {\n                        \"--font-selector\": \"R0Y7V29yayBTYW5zLXJlZ3VsYXI=\",\n                        \"--framer-font-family\": '\"Work Sans\", \"Work Sans Placeholder\", sans-serif',\n                        \"--framer-line-height\": \"1.5em\",\n                        \"--framer-text-alignment\": \"left\"\n                      },\n                      children: \"18 - 40 business days / tracking code: Available\"\n                    })\n                  }),\n                  className: \"framer-e3hz9t\",\n                  fonts: [\"GF;Work Sans-regular\"],\n                  verticalAlignment: \"top\",\n                  withExternalLayout: true\n                })]\n              }), /*#__PURE__*/_jsxs(motion.div, {\n                className: \"framer-164tptc\",\n                \"data-framer-name\": \"Q&A\",\n                name: \"Q&A\",\n                children: [/*#__PURE__*/_jsx(RichText, {\n                  __fromCanvasComponent: true,\n                  children: /*#__PURE__*/_jsx(React.Fragment, {\n                    children: /*#__PURE__*/_jsx(\"h2\", {\n                      style: {\n                        \"--font-selector\": \"R0Y7V29yayBTYW5zLXJlZ3VsYXI=\",\n                        \"--framer-font-family\": '\"Work Sans\", \"Work Sans Placeholder\", sans-serif',\n                        \"--framer-font-size\": \"20px\",\n                        \"--framer-letter-spacing\": \"-0.025em\",\n                        \"--framer-line-height\": \"1.5em\",\n                        \"--framer-text-alignment\": \"left\",\n                        \"--framer-text-color\": \"rgb(164, 14, 76)\"\n                      },\n                      children: \"Rest of World\"\n                    })\n                  }),\n                  className: \"framer-fjoo8o\",\n                  fonts: [\"GF;Work Sans-regular\"],\n                  verticalAlignment: \"top\",\n                  withExternalLayout: true\n                }), /*#__PURE__*/_jsx(RichText, {\n                  __fromCanvasComponent: true,\n                  children: /*#__PURE__*/_jsx(React.Fragment, {\n                    children: /*#__PURE__*/_jsx(\"h2\", {\n                      style: {\n                        \"--font-selector\": \"R0Y7V29yayBTYW5zLXJlZ3VsYXI=\",\n                        \"--framer-font-family\": '\"Work Sans\", \"Work Sans Placeholder\", sans-serif',\n                        \"--framer-line-height\": \"1.5em\",\n                        \"--framer-text-alignment\": \"left\"\n                      },\n                      children: \"15 - 35 business days / tracking code: Available\"\n                    })\n                  }),\n                  className: \"framer-8thvms\",\n                  fonts: [\"GF;Work Sans-regular\"],\n                  verticalAlignment: \"top\",\n                  withExternalLayout: true\n                })]\n              }), /*#__PURE__*/_jsxs(motion.div, {\n                className: \"framer-u998ha\",\n                \"data-framer-name\": \"Q&A\",\n                name: \"Q&A\",\n                children: [/*#__PURE__*/_jsx(RichText, {\n                  __fromCanvasComponent: true,\n                  children: /*#__PURE__*/_jsx(React.Fragment, {\n                    children: /*#__PURE__*/_jsx(\"h2\", {\n                      style: {\n                        \"--font-selector\": \"R0Y7V29yayBTYW5zLXJlZ3VsYXI=\",\n                        \"--framer-font-family\": '\"Work Sans\", \"Work Sans Placeholder\", sans-serif',\n                        \"--framer-font-size\": \"20px\",\n                        \"--framer-letter-spacing\": \"-0.025em\",\n                        \"--framer-line-height\": \"1.5em\",\n                        \"--framer-text-alignment\": \"left\",\n                        \"--framer-text-color\": \"rgb(153, 153, 153)\"\n                      },\n                      children: /*#__PURE__*/_jsx(\"br\", {\n                        className: \"trailing-break\"\n                      })\n                    })\n                  }),\n                  className: \"framer-108006j\",\n                  fonts: [\"GF;Work Sans-regular\"],\n                  verticalAlignment: \"top\",\n                  withExternalLayout: true\n                }), /*#__PURE__*/_jsx(RichText, {\n                  __fromCanvasComponent: true,\n                  children: /*#__PURE__*/_jsx(React.Fragment, {\n                    children: /*#__PURE__*/_jsx(\"h2\", {\n                      style: {\n                        \"--font-selector\": \"R0Y7V29yayBTYW5zLXJlZ3VsYXI=\",\n                        \"--framer-font-family\": '\"Work Sans\", \"Work Sans Placeholder\", sans-serif',\n                        \"--framer-line-height\": \"1.5em\",\n                        \"--framer-text-alignment\": \"left\",\n                        \"--framer-text-color\": \"rgb(255, 255, 255)\"\n                      },\n                      children: /*#__PURE__*/_jsx(\"br\", {\n                        className: \"trailing-break\"\n                      })\n                    })\n                  }),\n                  className: \"framer-m0nbuo\",\n                  fonts: [\"GF;Work Sans-regular\"],\n                  verticalAlignment: \"top\",\n                  withExternalLayout: true\n                })]\n              })]\n            })]\n          }), /*#__PURE__*/_jsx(motion.div, {\n            className: \"framer-18utiq1\",\n            \"data-framer-name\": \"Testimonials 2\",\n            name: \"Testimonials 2\",\n            children: /*#__PURE__*/_jsx(motion.div, {\n              className: \"framer-15z7dds\",\n              children: /*#__PURE__*/_jsx(PropertyOverrides, {\n                breakpoint: baseVariant,\n                overrides: {\n                  BzWr9yGzT: {\n                    children: /*#__PURE__*/_jsx(React.Fragment, {\n                      children: /*#__PURE__*/_jsxs(\"h3\", {\n                        style: {\n                          \"--font-selector\": \"R0Y7SW50ZXItNjAw\",\n                          \"--framer-font-size\": \"20px\",\n                          \"--framer-font-weight\": \"600\",\n                          \"--framer-letter-spacing\": \"-0.5px\",\n                          \"--framer-line-height\": \"1.4em\",\n                          \"--framer-text-alignment\": \"left\",\n                          \"--framer-text-color\": \"var(--token-b9c3c957-2c66-49c4-9732-fa196fddac20, rgb(0, 17, 34))\"\n                        },\n                        children: [\"\\xc9 v\\xe1lido deixar claro que esse muitas vezes \\xe9 o tempo m\\xe1ximo de entrega nos piores casos. \", /*#__PURE__*/_jsx(\"br\", {}), /*#__PURE__*/_jsx(\"br\", {}), \"Normalmente sua entrega chegar\\xe1 em bem menos tempo.  (Alguns produtos ficam muito tempo em Curitiba devido a fiscaliza\\xe7\\xe3o da receita federal que verifica todos os pacotes que entram no Brasil, e como eles est\\xe3o sobrecarregados algumas vezes isso atrasa muito as entregas) Mas n\\xe3o se preocupe, seu item vai chegar em breve para voc\\xea.\"]\n                      })\n                    }),\n                    fonts: [\"GF;Inter-600\"]\n                  }\n                },\n                children: /*#__PURE__*/_jsx(RichText, {\n                  __fromCanvasComponent: true,\n                  children: /*#__PURE__*/_jsx(React.Fragment, {\n                    children: /*#__PURE__*/_jsxs(\"h3\", {\n                      style: {\n                        \"--font-selector\": \"R0Y7SW50ZXItcmVndWxhcg==\",\n                        \"--framer-font-family\": '\"Inter\", \"Inter Placeholder\", sans-serif',\n                        \"--framer-font-size\": \"20px\",\n                        \"--framer-letter-spacing\": \"-0.5px\",\n                        \"--framer-line-height\": \"1.4em\",\n                        \"--framer-text-alignment\": \"left\",\n                        \"--framer-text-color\": \"var(--token-b9c3c957-2c66-49c4-9732-fa196fddac20, rgb(0, 17, 34))\"\n                      },\n                      children: [\"\\xc9 v\\xe1lido deixar claro que esse muitas vezes \\xe9 o tempo m\\xe1ximo de entrega nos piores casos. Normalmente sua entrega chegar\\xe1 em bem menos tempo.\", /*#__PURE__*/_jsx(\"br\", {}), /*#__PURE__*/_jsx(\"br\", {}), \"Alguns produtos ficam muito tempo em Curitiba devido a fiscaliza\\xe7\\xe3o da receita federal que verifica todos os pacotes que entram no Brasil, e como eles est\\xe3o sobrecarregados algumas vezes isso atrasa muito as entregas. Mas n\\xe3o se preocupe, seu item vai chegar em breve para voc\\xea.\"]\n                    })\n                  }),\n                  className: \"framer-1yknxqx\",\n                  fonts: [\"GF;Inter-regular\"],\n                  verticalAlignment: \"top\",\n                  withExternalLayout: true\n                })\n              })\n            })\n          }), /*#__PURE__*/_jsx(motion.div, {\n            className: \"framer-1fpzmgq\",\n            \"data-framer-name\": \"Metrics\",\n            name: \"Metrics\",\n            children: /*#__PURE__*/_jsxs(motion.div, {\n              className: \"framer-1m5sbt9\",\n              children: [/*#__PURE__*/_jsxs(motion.div, {\n                className: \"framer-1gvow\",\n                \"data-framer-name\": \"Card\",\n                name: \"Card\",\n                children: [/*#__PURE__*/_jsx(PropertyOverrides, {\n                  breakpoint: baseVariant,\n                  overrides: {\n                    BzWr9yGzT: {\n                      children: /*#__PURE__*/_jsx(React.Fragment, {\n                        children: /*#__PURE__*/_jsx(\"p\", {\n                          style: {\n                            \"--font-selector\": \"R0Y7TGVhZ3VlIEdvdGhpYy1yZWd1bGFy\",\n                            \"--framer-font-family\": '\"League Gothic\", \"League Gothic Placeholder\", sans-serif',\n                            \"--framer-font-size\": \"50px\",\n                            \"--framer-text-alignment\": \"left\"\n                          },\n                          children: \"160+\"\n                        })\n                      })\n                    }\n                  },\n                  children: /*#__PURE__*/_jsx(RichText, {\n                    __fromCanvasComponent: true,\n                    children: /*#__PURE__*/_jsx(React.Fragment, {\n                      children: /*#__PURE__*/_jsx(\"p\", {\n                        style: {\n                          \"--font-selector\": \"R0Y7TGVhZ3VlIEdvdGhpYy1yZWd1bGFy\",\n                          \"--framer-font-family\": '\"League Gothic\", \"League Gothic Placeholder\", sans-serif',\n                          \"--framer-font-size\": \"72px\",\n                          \"--framer-text-alignment\": \"left\"\n                        },\n                        children: \"160+\"\n                      })\n                    }),\n                    className: \"framer-1etk73u\",\n                    fonts: [\"GF;League Gothic-regular\"],\n                    verticalAlignment: \"top\",\n                    withExternalLayout: true\n                  })\n                }), /*#__PURE__*/_jsx(RichText, {\n                  __fromCanvasComponent: true,\n                  children: /*#__PURE__*/_jsx(React.Fragment, {\n                    children: /*#__PURE__*/_jsx(\"h3\", {\n                      style: {\n                        \"--font-selector\": \"R0Y7RE0gU2Fucy03MDA=\",\n                        \"--framer-font-family\": '\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\n                        \"--framer-font-size\": \"20px\",\n                        \"--framer-font-weight\": \"700\",\n                        \"--framer-letter-spacing\": \"-0.025em\",\n                        \"--framer-line-height\": \"1.5em\",\n                        \"--framer-text-alignment\": \"center\",\n                        \"--framer-text-color\": \"rgb(51, 51, 51)\"\n                      },\n                      children: \"Pa\\xedses Atendidos\"\n                    })\n                  }),\n                  className: \"framer-dlcxlt\",\n                  fonts: [\"GF;DM Sans-700\"],\n                  verticalAlignment: \"top\",\n                  withExternalLayout: true\n                })]\n              }), /*#__PURE__*/_jsx(motion.div, {\n                className: \"framer-xdm1ys\",\n                \"data-framer-name\": \"Card\",\n                name: \"Card\",\n                children: /*#__PURE__*/_jsx(Container, {\n                  className: \"framer-1kpcyas-container\",\n                  children: /*#__PURE__*/_jsx(Humaaans, {\n                    bodySelection: \"Pregnant\",\n                    direction: true,\n                    hair: \"rgb(139, 148, 158)\",\n                    headSelection: \"Curly\",\n                    height: \"100%\",\n                    id: \"SKWClwZ36\",\n                    isStanding: true,\n                    layoutId: \"SKWClwZ36\",\n                    sittingSelection: \"Baggy\",\n                    skin: \"rgb(51, 51, 51)\",\n                    standingSelection: \"Baggy\",\n                    style: {\n                      height: \"100%\",\n                      width: \"100%\"\n                    },\n                    width: \"100%\"\n                  })\n                })\n              }), /*#__PURE__*/_jsx(motion.div, {\n                className: \"framer-e74uzy\",\n                \"data-framer-name\": \"Card\",\n                name: \"Card\",\n                children: /*#__PURE__*/_jsx(Container, {\n                  className: \"framer-1obag4d-container\",\n                  children: /*#__PURE__*/_jsx(Humaaans, {\n                    bodySelection: \"Turtle\",\n                    direction: false,\n                    hair: \"rgb(139, 148, 158)\",\n                    headSelection: \"Short2\",\n                    height: \"100%\",\n                    id: \"XgezhvLD7\",\n                    isStanding: true,\n                    layoutId: \"XgezhvLD7\",\n                    sittingSelection: \"Wheelchair\",\n                    skin: \"rgb(51, 51, 51)\",\n                    standingSelection: \"Baggy\",\n                    style: {\n                      height: \"100%\",\n                      width: \"100%\"\n                    },\n                    width: \"100%\"\n                  })\n                })\n              }), /*#__PURE__*/_jsxs(motion.div, {\n                className: \"framer-lywx49\",\n                \"data-framer-name\": \"Card\",\n                name: \"Card\",\n                children: [/*#__PURE__*/_jsx(PropertyOverrides, {\n                  breakpoint: baseVariant,\n                  overrides: {\n                    BzWr9yGzT: {\n                      children: /*#__PURE__*/_jsx(React.Fragment, {\n                        children: /*#__PURE__*/_jsx(\"p\", {\n                          style: {\n                            \"--font-selector\": \"R0Y7TGVhZ3VlIEdvdGhpYy1yZWd1bGFy\",\n                            \"--framer-font-family\": '\"League Gothic\", \"League Gothic Placeholder\", sans-serif',\n                            \"--framer-font-size\": \"50px\",\n                            \"--framer-text-alignment\": \"left\"\n                          },\n                          children: \"100%\"\n                        })\n                      })\n                    }\n                  },\n                  children: /*#__PURE__*/_jsx(RichText, {\n                    __fromCanvasComponent: true,\n                    children: /*#__PURE__*/_jsx(React.Fragment, {\n                      children: /*#__PURE__*/_jsx(\"p\", {\n                        style: {\n                          \"--font-selector\": \"R0Y7TGVhZ3VlIEdvdGhpYy1yZWd1bGFy\",\n                          \"--framer-font-family\": '\"League Gothic\", \"League Gothic Placeholder\", sans-serif',\n                          \"--framer-font-size\": \"72px\",\n                          \"--framer-text-alignment\": \"left\"\n                        },\n                        children: \"100%\"\n                      })\n                    }),\n                    className: \"framer-sun0bc\",\n                    fonts: [\"GF;League Gothic-regular\"],\n                    verticalAlignment: \"top\",\n                    withExternalLayout: true\n                  })\n                }), /*#__PURE__*/_jsx(RichText, {\n                  __fromCanvasComponent: true,\n                  children: /*#__PURE__*/_jsx(React.Fragment, {\n                    children: /*#__PURE__*/_jsx(\"h2\", {\n                      style: {\n                        \"--font-selector\": \"R0Y7RE0gU2Fucy03MDA=\",\n                        \"--framer-font-family\": '\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\n                        \"--framer-font-size\": \"20px\",\n                        \"--framer-font-weight\": \"700\",\n                        \"--framer-letter-spacing\": \"-0.025em\",\n                        \"--framer-line-height\": \"1.5em\",\n                        \"--framer-text-alignment\": \"center\",\n                        \"--framer-text-color\": \"rgb(51, 51, 51)\"\n                      },\n                      children: \"Satisfa\\xe7\\xe3o Garantida\"\n                    })\n                  }),\n                  className: \"framer-n2z993\",\n                  fonts: [\"GF;DM Sans-700\"],\n                  verticalAlignment: \"top\",\n                  withExternalLayout: true\n                })]\n              })]\n            })\n          }), /*#__PURE__*/_jsx(motion.div, {\n            className: \"framer-ejh8ez\",\n            \"data-framer-name\": \"Call to Action\",\n            name: \"Call to Action\",\n            children: /*#__PURE__*/_jsxs(motion.div, {\n              className: \"framer-yfx293\",\n              \"data-framer-name\": \"Wrapper\",\n              name: \"Wrapper\",\n              children: [/*#__PURE__*/_jsx(PropertyOverrides, {\n                breakpoint: baseVariant,\n                overrides: {\n                  BzWr9yGzT: {\n                    children: /*#__PURE__*/_jsx(React.Fragment, {\n                      children: /*#__PURE__*/_jsx(\"h2\", {\n                        style: {\n                          \"--font-selector\": \"R0Y7TGVhZ3VlIEdvdGhpYy1yZWd1bGFy\",\n                          \"--framer-font-family\": '\"League Gothic\", \"League Gothic Placeholder\", sans-serif',\n                          \"--framer-font-size\": \"32px\",\n                          \"--framer-letter-spacing\": \"0px\",\n                          \"--framer-text-alignment\": \"left\",\n                          \"--framer-text-color\": \"rgb(51, 51, 51)\"\n                        },\n                        children: \"Compre agora em qualquer uma de nossas lojas online e desfrute de envio gratuito!\"\n                      })\n                    })\n                  },\n                  sEuMG215R: {\n                    children: /*#__PURE__*/_jsx(React.Fragment, {\n                      children: /*#__PURE__*/_jsx(\"h2\", {\n                        style: {\n                          \"--font-selector\": \"R0Y7TGVhZ3VlIEdvdGhpYy1yZWd1bGFy\",\n                          \"--framer-font-family\": '\"League Gothic\", \"League Gothic Placeholder\", sans-serif',\n                          \"--framer-font-size\": \"32px\",\n                          \"--framer-text-alignment\": \"left\",\n                          \"--framer-text-color\": \"rgb(51, 51, 51)\"\n                        },\n                        children: \"Compre agora em qualquer uma de nossas lojas online e desfrute de envio gratuito!\"\n                      })\n                    })\n                  }\n                },\n                children: /*#__PURE__*/_jsx(RichText, {\n                  __fromCanvasComponent: true,\n                  children: /*#__PURE__*/_jsx(React.Fragment, {\n                    children: /*#__PURE__*/_jsx(\"h2\", {\n                      style: {\n                        \"--font-selector\": \"R0Y7TGVhZ3VlIEdvdGhpYy1yZWd1bGFy\",\n                        \"--framer-font-family\": '\"League Gothic\", \"League Gothic Placeholder\", sans-serif',\n                        \"--framer-font-size\": \"48px\",\n                        \"--framer-text-alignment\": \"left\",\n                        \"--framer-text-color\": \"rgb(51, 51, 51)\"\n                      },\n                      children: \"Compre agora em qualquer uma de nossas lojas online e desfrute de envio gratuito!\"\n                    })\n                  }),\n                  className: \"framer-xa0m1b\",\n                  fonts: [\"GF;League Gothic-regular\"],\n                  verticalAlignment: \"top\",\n                  withExternalLayout: true\n                })\n              }), /*#__PURE__*/_jsx(motion.div, {\n                className: \"framer-hdi9tr\",\n                \"data-framer-name\": \"Buttons\",\n                name: \"Buttons\",\n                children: /*#__PURE__*/_jsx(Link, {\n                  href: \"https://faetton.com\",\n                  children: /*#__PURE__*/_jsx(motion.a, {\n                    className: \"framer-2597hc framer-lux5qc\",\n                    \"data-framer-name\": \"Button\",\n                    name: \"Button\",\n                    children: /*#__PURE__*/_jsx(RichText, {\n                      __fromCanvasComponent: true,\n                      children: /*#__PURE__*/_jsx(React.Fragment, {\n                        children: /*#__PURE__*/_jsx(\"p\", {\n                          style: {\n                            \"--font-selector\": \"R0Y7RE0gU2Fucy03MDA=\",\n                            \"--framer-font-family\": '\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\n                            \"--framer-font-weight\": \"700\",\n                            \"--framer-text-alignment\": \"center\",\n                            \"--framer-text-color\": \"rgb(255, 255, 255)\"\n                          },\n                          children: \"Compre Agora\"\n                        })\n                      }),\n                      className: \"framer-t1mys7\",\n                      fonts: [\"GF;DM Sans-700\"],\n                      verticalAlignment: \"top\",\n                      withExternalLayout: true\n                    })\n                  })\n                })\n              })]\n            })\n          })]\n        }), /*#__PURE__*/_jsx(\"div\", {\n          id: \"overlay\"\n        })]\n      })\n    })\n  });\n});\nconst css = ['.framer-wumzE [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: #FFFFFF; }`, \".framer-wumzE .framer-lux5qc { display: block; }\", \".framer-wumzE .framer-72rtr7 { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px 0px 0px 0px; position: relative; width: 1200px; }\", \".framer-wumzE .framer-dt0e6i { align-content: center; align-items: center; background-color: #333333; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 100px 50px 100px 50px; position: relative; width: 100%; }\", \".framer-wumzE .framer-1osjsxq { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 50px; height: min-content; justify-content: flex-start; max-width: 1000px; overflow: visible; padding: 0px 0px 0px 0px; position: relative; width: 1px; z-index: 5; }\", \".framer-wumzE .framer-1cuma6e { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 0px 0px 0px; position: relative; width: 1px; }\", \".framer-wumzE .framer-uufl2r, .framer-wumzE .framer-3kt7iy { --framer-paragraph-spacing: 0px; flex: none; height: auto; overflow: visible; position: relative; white-space: pre; width: 100%; }\", \".framer-wumzE .framer-1avhvl3 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-paragraph-spacing: 0px; flex: none; height: auto; overflow: visible; position: relative; white-space: pre; width: 100%; }\", \".framer-wumzE .framer-1idv6ge-container { flex: none; height: 289px; position: relative; transform: rotate(-45deg); width: 461px; }\", \".framer-wumzE .framer-133h1ov { align-content: center; align-items: center; background-color: #f0f2f5; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 100px 100px 100px 100px; position: relative; width: 100%; }\", \".framer-wumzE .framer-13t5h9d, .framer-wumzE .framer-1r0zx4i { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: flex-start; max-width: 1000px; overflow: hidden; padding: 0px 0px 0px 0px; position: relative; width: 100%; z-index: 1; }\", \".framer-wumzE .framer-iishai { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; max-width: 600px; overflow: hidden; padding: 0px 0px 0px 0px; position: relative; width: 1px; }\", \".framer-wumzE .framer-1evnk53, .framer-wumzE .framer-hyog6e, .framer-wumzE .framer-yx71up, .framer-wumzE .framer-1farw96, .framer-wumzE .framer-1bfr76w, .framer-wumzE .framer-lswdom, .framer-wumzE .framer-fjoo8o, .framer-wumzE .framer-108006j { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-paragraph-spacing: 0px; flex: none; height: auto; overflow: visible; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\", \".framer-wumzE .framer-12au1rz, .framer-wumzE .framer-1h8wta7, .framer-wumzE .framer-1ci50my, .framer-wumzE .framer-mwvj5e { --framer-paragraph-spacing: 0px; flex: none; height: auto; overflow: visible; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\", \".framer-wumzE .framer-13gr367-container, .framer-wumzE .framer-iyi1c9-container { flex: none; height: 400px; position: relative; width: 400px; z-index: 1; }\", \".framer-wumzE .framer-1s8bvwt-container { bottom: 0px; flex: none; left: 0px; opacity: 0.5; position: absolute; right: 0px; top: 0px; z-index: 0; }\", \".framer-wumzE .framer-1bmd2g6 { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: 400px; justify-content: center; overflow: visible; padding: 0px 0px 0px 0px; position: relative; width: 100%; }\", \".framer-wumzE .framer-104t2dj { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 150px; justify-content: center; max-width: 1000px; overflow: hidden; padding: 0px 0px 0px 0px; position: relative; width: 1000px; }\", \".framer-wumzE .framer-1ulc9je-container, .framer-wumzE .framer-106e30l-container, .framer-wumzE .framer-58yr7q-container, .framer-wumzE .framer-1e0c6uv-container, .framer-wumzE .framer-92e5o3-container, .framer-wumzE .framer-1hpdnib-container { flex: none; height: 150px; position: relative; width: 150px; z-index: 1; }\", \".framer-wumzE .framer-1816yvj, .framer-wumzE .framer-1fpzmgq { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 100px 100px 100px 100px; position: relative; width: 100%; }\", \".framer-wumzE .framer-1059rjc { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; max-width: 600px; overflow: hidden; padding: 0px 0px 0px 0px; position: relative; width: 1px; }\", \".framer-wumzE .framer-136w9f { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 27px; height: min-content; justify-content: center; overflow: hidden; padding: 27px 100px 27px 100px; position: relative; width: 100%; }\", \".framer-wumzE .framer-c208ut, .framer-wumzE .framer-134wwhg { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-paragraph-spacing: 0px; flex: none; height: auto; max-width: 1000px; overflow: visible; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\", \".framer-wumzE .framer-lms3jt { display: grid; flex: none; gap: 40px; grid-auto-rows: min-content; grid-template-columns: repeat(3, minmax(100px, 1fr)); grid-template-rows: repeat(2, min-content); height: min-content; justify-content: center; max-width: 1000px; overflow: hidden; padding: 0px 0px 0px 0px; position: relative; width: 100%; }\", \".framer-wumzE .framer-1uemalu, .framer-wumzE .framer-1ya84r9, .framer-wumzE .framer-26rkvc, .framer-wumzE .framer-l3o10m, .framer-wumzE .framer-164tptc, .framer-wumzE .framer-u998ha { align-content: flex-start; align-items: flex-start; align-self: start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; justify-self: start; max-width: 100%; overflow: visible; padding: 0px 0px 0px 0px; position: relative; width: 100%; }\", \".framer-wumzE .framer-1ttx2qv, .framer-wumzE .framer-mdirgo, .framer-wumzE .framer-1sbb9df, .framer-wumzE .framer-e3hz9t, .framer-wumzE .framer-8thvms, .framer-wumzE .framer-m0nbuo, .framer-wumzE .framer-dlcxlt, .framer-wumzE .framer-n2z993 { --framer-paragraph-spacing: 0px; flex: none; height: auto; max-width: 400px; overflow: visible; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\", \".framer-wumzE .framer-18utiq1 { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 60px; height: min-content; justify-content: center; overflow: hidden; padding: 100px 40px 100px 40px; position: relative; width: 100%; }\", \".framer-wumzE .framer-15z7dds { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 15px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px 0px 0px 0px; position: relative; width: 788px; }\", \".framer-wumzE .framer-1yknxqx { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-paragraph-spacing: 0px; flex: none; height: auto; overflow: visible; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; z-index: 1; }\", \".framer-wumzE .framer-1m5sbt9 { display: grid; flex: none; gap: 20px; grid-auto-rows: min-content; grid-template-columns: repeat(3, minmax(40px, 1fr)); grid-template-rows: repeat(2, min-content); height: min-content; justify-content: center; max-width: 1000px; overflow: hidden; padding: 0px 0px 0px 0px; position: relative; width: 100%; }\", \".framer-wumzE .framer-1gvow, .framer-wumzE .framer-lywx49 { align-content: center; align-items: center; align-self: center; background-color: #f2f2f2; border-bottom-left-radius: 40px; border-bottom-right-radius: 40px; border-top-left-radius: 40px; border-top-right-radius: 40px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; grid-column: auto / span 2; height: 320px; justify-content: center; justify-self: center; overflow: hidden; padding: 60px 60px 60px 60px; position: relative; width: 100%; will-change: transform; }\", \".framer-wumzE .framer-1etk73u, .framer-wumzE .framer-sun0bc { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-paragraph-spacing: 0px; flex: none; height: auto; overflow: visible; position: relative; white-space: pre; width: auto; }\", \".framer-wumzE .framer-xdm1ys, .framer-wumzE .framer-e74uzy { align-content: center; align-items: center; align-self: center; background-color: #f2f2f2; border-bottom-left-radius: 40px; border-bottom-right-radius: 40px; border-top-left-radius: 40px; border-top-right-radius: 40px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: 320px; justify-content: center; justify-self: center; overflow: hidden; padding: 60px 60px 60px 60px; position: relative; width: 100%; will-change: transform; }\", \".framer-wumzE .framer-1kpcyas-container, .framer-wumzE .framer-1obag4d-container { flex: 1 0 0px; height: 1px; position: relative; width: 100%; z-index: 1; }\", \".framer-wumzE .framer-ejh8ez { align-content: flex-start; align-items: flex-start; background-color: #ffffff; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; overflow: visible; padding: 100px 100px 100px 100px; position: relative; width: 100%; }\", \".framer-wumzE .framer-yfx293 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: flex-start; max-width: 100%; overflow: hidden; padding: 0px 0px 0px 0px; position: relative; width: 1000px; }\", \".framer-wumzE .framer-xa0m1b { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-paragraph-spacing: 0px; flex: none; height: auto; max-width: 100%; overflow: visible; position: relative; white-space: pre-wrap; width: 800px; word-break: break-word; word-wrap: break-word; }\", \".framer-wumzE .framer-hdi9tr { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 15px; height: min-content; justify-content: center; overflow: visible; padding: 0px 0px 0px 0px; position: relative; width: min-content; }\", \".framer-wumzE .framer-2597hc { align-content: center; align-items: center; background-color: #8b949e; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 40px; justify-content: center; overflow: visible; padding: 15px 15px 15px 15px; position: relative; text-decoration: none; width: min-content; }\", \".framer-wumzE .framer-t1mys7 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\", \"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-wumzE .framer-72rtr7, .framer-wumzE .framer-dt0e6i, .framer-wumzE .framer-1osjsxq, .framer-wumzE .framer-1cuma6e, .framer-wumzE .framer-133h1ov, .framer-wumzE .framer-13t5h9d, .framer-wumzE .framer-iishai, .framer-wumzE .framer-1bmd2g6, .framer-wumzE .framer-104t2dj, .framer-wumzE .framer-1816yvj, .framer-wumzE .framer-1r0zx4i, .framer-wumzE .framer-1059rjc, .framer-wumzE .framer-136w9f, .framer-wumzE .framer-1uemalu, .framer-wumzE .framer-1ya84r9, .framer-wumzE .framer-26rkvc, .framer-wumzE .framer-l3o10m, .framer-wumzE .framer-164tptc, .framer-wumzE .framer-u998ha, .framer-wumzE .framer-18utiq1, .framer-wumzE .framer-15z7dds, .framer-wumzE .framer-1fpzmgq, .framer-wumzE .framer-1gvow, .framer-wumzE .framer-xdm1ys, .framer-wumzE .framer-e74uzy, .framer-wumzE .framer-lywx49, .framer-wumzE .framer-ejh8ez, .framer-wumzE .framer-yfx293, .framer-wumzE .framer-hdi9tr, .framer-wumzE .framer-2597hc { gap: 0px; } .framer-wumzE .framer-72rtr7 > *, .framer-wumzE .framer-1cuma6e > *, .framer-wumzE .framer-133h1ov > *, .framer-wumzE .framer-1816yvj > *, .framer-wumzE .framer-1fpzmgq > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-wumzE .framer-72rtr7 > :first-child, .framer-wumzE .framer-1cuma6e > :first-child, .framer-wumzE .framer-133h1ov > :first-child, .framer-wumzE .framer-iishai > :first-child, .framer-wumzE .framer-1816yvj > :first-child, .framer-wumzE .framer-1059rjc > :first-child, .framer-wumzE .framer-136w9f > :first-child, .framer-wumzE .framer-1uemalu > :first-child, .framer-wumzE .framer-1ya84r9 > :first-child, .framer-wumzE .framer-26rkvc > :first-child, .framer-wumzE .framer-l3o10m > :first-child, .framer-wumzE .framer-164tptc > :first-child, .framer-wumzE .framer-u998ha > :first-child, .framer-wumzE .framer-18utiq1 > :first-child, .framer-wumzE .framer-1fpzmgq > :first-child, .framer-wumzE .framer-1gvow > :first-child, .framer-wumzE .framer-xdm1ys > :first-child, .framer-wumzE .framer-e74uzy > :first-child, .framer-wumzE .framer-lywx49 > :first-child, .framer-wumzE .framer-ejh8ez > :first-child, .framer-wumzE .framer-yfx293 > :first-child { margin-top: 0px; } .framer-wumzE .framer-72rtr7 > :last-child, .framer-wumzE .framer-1cuma6e > :last-child, .framer-wumzE .framer-133h1ov > :last-child, .framer-wumzE .framer-iishai > :last-child, .framer-wumzE .framer-1816yvj > :last-child, .framer-wumzE .framer-1059rjc > :last-child, .framer-wumzE .framer-136w9f > :last-child, .framer-wumzE .framer-1uemalu > :last-child, .framer-wumzE .framer-1ya84r9 > :last-child, .framer-wumzE .framer-26rkvc > :last-child, .framer-wumzE .framer-l3o10m > :last-child, .framer-wumzE .framer-164tptc > :last-child, .framer-wumzE .framer-u998ha > :last-child, .framer-wumzE .framer-18utiq1 > :last-child, .framer-wumzE .framer-1fpzmgq > :last-child, .framer-wumzE .framer-1gvow > :last-child, .framer-wumzE .framer-xdm1ys > :last-child, .framer-wumzE .framer-e74uzy > :last-child, .framer-wumzE .framer-lywx49 > :last-child, .framer-wumzE .framer-ejh8ez > :last-child, .framer-wumzE .framer-yfx293 > :last-child { margin-bottom: 0px; } .framer-wumzE .framer-dt0e6i > *, .framer-wumzE .framer-104t2dj > *, .framer-wumzE .framer-2597hc > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-wumzE .framer-dt0e6i > :first-child, .framer-wumzE .framer-1osjsxq > :first-child, .framer-wumzE .framer-13t5h9d > :first-child, .framer-wumzE .framer-1bmd2g6 > :first-child, .framer-wumzE .framer-104t2dj > :first-child, .framer-wumzE .framer-1r0zx4i > :first-child, .framer-wumzE .framer-15z7dds > :first-child, .framer-wumzE .framer-hdi9tr > :first-child, .framer-wumzE .framer-2597hc > :first-child { margin-left: 0px; } .framer-wumzE .framer-dt0e6i > :last-child, .framer-wumzE .framer-1osjsxq > :last-child, .framer-wumzE .framer-13t5h9d > :last-child, .framer-wumzE .framer-1bmd2g6 > :last-child, .framer-wumzE .framer-104t2dj > :last-child, .framer-wumzE .framer-1r0zx4i > :last-child, .framer-wumzE .framer-15z7dds > :last-child, .framer-wumzE .framer-hdi9tr > :last-child, .framer-wumzE .framer-2597hc > :last-child { margin-right: 0px; } .framer-wumzE .framer-1osjsxq > * { margin: 0px; margin-left: calc(50px / 2); margin-right: calc(50px / 2); } .framer-wumzE .framer-13t5h9d > *, .framer-wumzE .framer-1r0zx4i > * { margin: 0px; margin-left: calc(40px / 2); margin-right: calc(40px / 2); } .framer-wumzE .framer-iishai > *, .framer-wumzE .framer-1059rjc > *, .framer-wumzE .framer-ejh8ez > *, .framer-wumzE .framer-yfx293 > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-wumzE .framer-1bmd2g6 > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-wumzE .framer-136w9f > * { margin: 0px; margin-bottom: calc(27px / 2); margin-top: calc(27px / 2); } .framer-wumzE .framer-1uemalu > *, .framer-wumzE .framer-1ya84r9 > *, .framer-wumzE .framer-26rkvc > *, .framer-wumzE .framer-l3o10m > *, .framer-wumzE .framer-164tptc > *, .framer-wumzE .framer-u998ha > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-wumzE .framer-18utiq1 > * { margin: 0px; margin-bottom: calc(60px / 2); margin-top: calc(60px / 2); } .framer-wumzE .framer-15z7dds > *, .framer-wumzE .framer-hdi9tr > * { margin: 0px; margin-left: calc(15px / 2); margin-right: calc(15px / 2); } .framer-wumzE .framer-1gvow > *, .framer-wumzE .framer-xdm1ys > *, .framer-wumzE .framer-e74uzy > *, .framer-wumzE .framer-lywx49 > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } }\", \"@media (min-width: 1200px) { .framer-wumzE .hidden-72rtr7 { display: none !important; } }\", `@media (min-width: 810px) and (max-width: 1199px) { .framer-wumzE .hidden-1n5fqya { display: none !important; } .${metadata.bodyClassName} { background: #FFFFFF; } .framer-wumzE .framer-72rtr7 { width: 810px; } .framer-wumzE .framer-1osjsxq { flex-direction: column; } .framer-wumzE .framer-1cuma6e { flex: none; order: 0; width: 100%; } .framer-wumzE .framer-3kt7iy { white-space: pre-wrap; word-break: break-word; word-wrap: break-word; } .framer-wumzE .framer-1idv6ge-container { order: 1; } .framer-wumzE .framer-133h1ov, .framer-wumzE .framer-1816yvj, .framer-wumzE .framer-18utiq1 { padding: 80px 40px 80px 40px; } .framer-wumzE .framer-13gr367-container, .framer-wumzE .framer-iyi1c9-container { height: 300px; width: 300px; } .framer-wumzE .framer-1bmd2g6 { gap: unset; justify-content: space-evenly; padding: 50px 50px 50px 50px; } .framer-wumzE .framer-136w9f { width: 100%; } .framer-wumzE .framer-15z7dds { width: 700px; } .framer-wumzE .framer-1yknxqx { min-width: 700px; } .framer-wumzE .framer-1fpzmgq { align-content: flex-start; align-items: flex-start; padding: 80px 40px 80px 40px; } .framer-wumzE .framer-1m5sbt9 { grid-template-columns: repeat(2, minmax(40px, 1fr)); } .framer-wumzE .framer-ejh8ez { padding: 100px 50px 100px 50px; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-wumzE .framer-1osjsxq, .framer-wumzE .framer-1bmd2g6 { gap: 0px; } .framer-wumzE .framer-1osjsxq > * { margin: 0px; margin-bottom: calc(50px / 2); margin-top: calc(50px / 2); } .framer-wumzE .framer-1osjsxq > :first-child { margin-top: 0px; } .framer-wumzE .framer-1osjsxq > :last-child { margin-bottom: 0px; } .framer-wumzE .framer-1bmd2g6 > *, .framer-wumzE .framer-1bmd2g6 > :first-child, .framer-wumzE .framer-1bmd2g6 > :last-child { margin: 0px; } }}`, `@media (max-width: 809px) { .framer-wumzE .hidden-1ea8ffd { display: none !important; } .${metadata.bodyClassName} { background: #FFFFFF; } .framer-wumzE .framer-72rtr7 { width: 390px; } .framer-wumzE .framer-dt0e6i, .framer-wumzE .framer-1fpzmgq { padding: 20px 20px 20px 20px; } .framer-wumzE .framer-1osjsxq { flex-direction: column; gap: unset; justify-content: space-between; } .framer-wumzE .framer-1cuma6e { flex: none; order: 0; padding: 0px 20px 20px 20px; width: 100%; } .framer-wumzE .framer-1idv6ge-container { order: 1; } .framer-wumzE .framer-133h1ov, .framer-wumzE .framer-1816yvj, .framer-wumzE .framer-18utiq1 { padding: 60px 20px 60px 20px; } .framer-wumzE .framer-13t5h9d, .framer-wumzE .framer-1r0zx4i { flex-direction: column; } .framer-wumzE .framer-iishai, .framer-wumzE .framer-1059rjc { flex: none; order: 1; width: 100%; } .framer-wumzE .framer-13gr367-container, .framer-wumzE .framer-iyi1c9-container { height: 300px; order: 0; width: 300px; } .framer-wumzE .framer-1bmd2g6 { flex-direction: column; gap: 40px; height: min-content; padding: 60px 60px 60px 60px; } .framer-wumzE .framer-136w9f { display: block; height: 844px; min-width: 100%; padding: unset; width: 100%; } .framer-wumzE .framer-c208ut { left: 50%; max-width: unset; position: absolute; top: 29px; transform: translateX(-50%); width: 350px; z-index: 1; } .framer-wumzE .framer-134wwhg { left: 50%; max-width: unset; position: absolute; top: 127px; transform: translateX(-50%); width: 350px; z-index: 1; } .framer-wumzE .framer-lms3jt { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: column; flex-wrap: nowrap; justify-content: flex-start; left: 20px; max-width: unset; position: absolute; right: 20px; top: 225px; width: unset; z-index: 1; } .framer-wumzE .framer-1uemalu, .framer-wumzE .framer-1ya84r9, .framer-wumzE .framer-26rkvc, .framer-wumzE .framer-l3o10m, .framer-wumzE .framer-164tptc { align-self: unset; } .framer-wumzE .framer-mdirgo { max-width: 100%; min-width: 100%; } .framer-wumzE .framer-u998ha { align-self: unset; width: 150px; } .framer-wumzE .framer-15z7dds { width: min-content; } .framer-wumzE .framer-1yknxqx { max-height: 100%; max-width: 100%; min-width: 300px; width: 334px; } .framer-wumzE .framer-1m5sbt9 { grid-template-columns: repeat(1, minmax(40px, 1fr)); } .framer-wumzE .framer-1gvow, .framer-wumzE .framer-lywx49 { grid-column: auto / span 1; } .framer-wumzE .framer-ejh8ez { gap: 20px; padding: 60px 20px 60px 20px; } .framer-wumzE .framer-hdi9tr { flex-direction: column; width: 100%; } .framer-wumzE .framer-2597hc { width: 100%; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-wumzE .framer-1osjsxq, .framer-wumzE .framer-13t5h9d, .framer-wumzE .framer-1bmd2g6, .framer-wumzE .framer-1r0zx4i, .framer-wumzE .framer-136w9f, .framer-wumzE .framer-lms3jt, .framer-wumzE .framer-ejh8ez, .framer-wumzE .framer-hdi9tr { gap: 0px; } .framer-wumzE .framer-1osjsxq > *, .framer-wumzE .framer-1osjsxq > :first-child, .framer-wumzE .framer-1osjsxq > :last-child, .framer-wumzE .framer-136w9f > *, .framer-wumzE .framer-136w9f > :first-child, .framer-wumzE .framer-136w9f > :last-child { margin: 0px; } .framer-wumzE .framer-13t5h9d > *, .framer-wumzE .framer-1bmd2g6 > *, .framer-wumzE .framer-1r0zx4i > *, .framer-wumzE .framer-lms3jt > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-wumzE .framer-13t5h9d > :first-child, .framer-wumzE .framer-1bmd2g6 > :first-child, .framer-wumzE .framer-1r0zx4i > :first-child, .framer-wumzE .framer-lms3jt > :first-child, .framer-wumzE .framer-ejh8ez > :first-child, .framer-wumzE .framer-hdi9tr > :first-child { margin-top: 0px; } .framer-wumzE .framer-13t5h9d > :last-child, .framer-wumzE .framer-1bmd2g6 > :last-child, .framer-wumzE .framer-1r0zx4i > :last-child, .framer-wumzE .framer-lms3jt > :last-child, .framer-wumzE .framer-ejh8ez > :last-child, .framer-wumzE .framer-hdi9tr > :last-child { margin-bottom: 0px; } .framer-wumzE .framer-ejh8ez > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-wumzE .framer-hdi9tr > * { margin: 0px; margin-bottom: calc(15px / 2); margin-top: calc(15px / 2); } }}`, ...sharedStyle.css]; /**\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        * This is a generated Framer component.\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        * @framerIntrinsicHeight 4811\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        * @framerIntrinsicWidth 1200\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"sEuMG215R\":{\"layout\":[\"fixed\",\"auto\"]},\"BzWr9yGzT\":{\"layout\":[\"fixed\",\"auto\"]}}}\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        * @framerResponsiveScreen\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        */\nconst FrameraugiA20Il = withCSS(Component, css, \"framer-wumzE\");\nexport default FrameraugiA20Il;\nFrameraugiA20Il.displayName = \"Home\";\nFrameraugiA20Il.defaultProps = {\n  height: 4811,\n  width: 1200\n};\naddFonts(FrameraugiA20Il, [{\n  family: \"Montserrat\",\n  moduleAsset: {\n    localModuleIdentifier: \"local-module:screen/augiA20Il:default\",\n    url: \"https://fonts.gstatic.com/s/montserrat/v25/JTUHjIg1_i6t8kCHKm4532VJOt5-QNFgpCuM70w-Y3tcoqK5.ttf\"\n  },\n  style: \"normal\",\n  url: \"https://fonts.gstatic.com/s/montserrat/v25/JTUHjIg1_i6t8kCHKm4532VJOt5-QNFgpCuM70w-Y3tcoqK5.ttf\",\n  weight: \"700\"\n}, {\n  family: \"League Gothic\",\n  moduleAsset: {\n    localModuleIdentifier: \"local-module:screen/augiA20Il:default\",\n    url: \"https://fonts.gstatic.com/s/leaguegothic/v6/qFdR35CBi4tvBz81xy7WG7ep-BQAY7Krj7feObpH_-amidQ6Q9hn.ttf\"\n  },\n  style: \"normal\",\n  url: \"https://fonts.gstatic.com/s/leaguegothic/v6/qFdR35CBi4tvBz81xy7WG7ep-BQAY7Krj7feObpH_-amidQ6Q9hn.ttf\",\n  weight: \"400\"\n}, {\n  family: \"DM Sans\",\n  moduleAsset: {\n    localModuleIdentifier: \"local-module:screen/augiA20Il:default\",\n    url: \"https://fonts.gstatic.com/s/dmsans/v14/rP2tp2ywxg089UriI5-g4vlH9VoD8CmcqZG40F9JadbnoEwAkJxhTmf3ZGMZpg.ttf\"\n  },\n  style: \"normal\",\n  url: \"https://fonts.gstatic.com/s/dmsans/v14/rP2tp2ywxg089UriI5-g4vlH9VoD8CmcqZG40F9JadbnoEwAkJxhTmf3ZGMZpg.ttf\",\n  weight: \"500\"\n}, {\n  family: \"DM Sans\",\n  moduleAsset: {\n    localModuleIdentifier: \"local-module:screen/augiA20Il:default\",\n    url: \"https://fonts.gstatic.com/s/dmsans/v14/rP2tp2ywxg089UriI5-g4vlH9VoD8CmcqZG40F9JadbnoEwARZthTmf3ZGMZpg.ttf\"\n  },\n  style: \"normal\",\n  url: \"https://fonts.gstatic.com/s/dmsans/v14/rP2tp2ywxg089UriI5-g4vlH9VoD8CmcqZG40F9JadbnoEwARZthTmf3ZGMZpg.ttf\",\n  weight: \"700\"\n}, {\n  family: \"DM Sans\",\n  moduleAsset: {\n    localModuleIdentifier: \"local-module:screen/augiA20Il:default\",\n    url: \"https://fonts.gstatic.com/s/dmsans/v14/rP2tp2ywxg089UriI5-g4vlH9VoD8CmcqZG40F9JadbnoEwAopxhTmf3ZGMZpg.ttf\"\n  },\n  style: \"normal\",\n  url: \"https://fonts.gstatic.com/s/dmsans/v14/rP2tp2ywxg089UriI5-g4vlH9VoD8CmcqZG40F9JadbnoEwAopxhTmf3ZGMZpg.ttf\",\n  weight: \"400\"\n}, {\n  family: \"Unbounded\",\n  moduleAsset: {\n    localModuleIdentifier: \"local-module:screen/augiA20Il:default\",\n    url: \"https://fonts.gstatic.com/s/unbounded/v6/Yq6F-LOTXCb04q32xlpat-6uR42XTqtG6__2043HgP6LR0Y.ttf\"\n  },\n  style: \"normal\",\n  url: \"https://fonts.gstatic.com/s/unbounded/v6/Yq6F-LOTXCb04q32xlpat-6uR42XTqtG6__2043HgP6LR0Y.ttf\",\n  weight: \"700\"\n}, {\n  family: \"Unbounded\",\n  moduleAsset: {\n    localModuleIdentifier: \"local-module:screen/augiA20Il:default\",\n    url: \"https://fonts.gstatic.com/s/unbounded/v6/Yq6F-LOTXCb04q32xlpat-6uR42XTqtG6xjx043HgP6LR0Y.ttf\"\n  },\n  style: \"normal\",\n  url: \"https://fonts.gstatic.com/s/unbounded/v6/Yq6F-LOTXCb04q32xlpat-6uR42XTqtG6xjx043HgP6LR0Y.ttf\",\n  weight: \"400\"\n}, {\n  family: \"Work Sans\",\n  moduleAsset: {\n    localModuleIdentifier: \"local-module:screen/augiA20Il:default\",\n    url: \"https://fonts.gstatic.com/s/worksans/v18/QGY_z_wNahGAdqQ43RhVcIgYT2Xz5u32K0nXNigDp6_cOyA.ttf\"\n  },\n  style: \"normal\",\n  url: \"https://fonts.gstatic.com/s/worksans/v18/QGY_z_wNahGAdqQ43RhVcIgYT2Xz5u32K0nXNigDp6_cOyA.ttf\",\n  weight: \"400\"\n}, {\n  family: \"Inter\",\n  moduleAsset: {\n    localModuleIdentifier: \"local-module:screen/augiA20Il:default\",\n    url: \"https://fonts.gstatic.com/s/inter/v12/UcCO3FwrK3iLTeHuS_fvQtMwCp50KnMw2boKoduKmMEVuLyfMZhrib2Bg-4.ttf\"\n  },\n  style: \"normal\",\n  url: \"https://fonts.gstatic.com/s/inter/v12/UcCO3FwrK3iLTeHuS_fvQtMwCp50KnMw2boKoduKmMEVuLyfMZhrib2Bg-4.ttf\",\n  weight: \"400\"\n}, {\n  family: \"Inter\",\n  moduleAsset: {\n    localModuleIdentifier: \"local-module:screen/augiA20Il:default\",\n    url: \"https://fonts.gstatic.com/s/inter/v12/UcCO3FwrK3iLTeHuS_fvQtMwCp50KnMw2boKoduKmMEVuGKYMZhrib2Bg-4.ttf\"\n  },\n  style: \"normal\",\n  url: \"https://fonts.gstatic.com/s/inter/v12/UcCO3FwrK3iLTeHuS_fvQtMwCp50KnMw2boKoduKmMEVuGKYMZhrib2Bg-4.ttf\",\n  weight: \"600\"\n}, ...MaterialFonts, ...HumaaansFonts, ...PatternFonts, ...sharedStyle.fonts]);\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        \"framerIntrinsicHeight\": \"4811\",\n        \"framerResponsiveScreen\": \"\",\n        \"framerContractVersion\": \"1\",\n        \"framerCanvasComponentVariantDetails\": \"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"sEuMG215R\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"BzWr9yGzT\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\n        \"framerIntrinsicWidth\": \"1200\"\n      }\n    },\n    \"__FramerMetadata__\": {\n      \"type\": \"variable\"\n    }\n  }\n};"],
  "mappings": "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",
  "names": ["Pattern", "props", "patternType", "front", "back", "radius", "scale", "shouldAnimate", "direction", "diagonal", "duration", "isCanvas", "RenderTarget", "pattern", "position", "size", "repeat", "blendMode", "filter", "addBackground", "backgroundPosAnimation", "frontHex", "Color", "backHex", "frontWithoutHex", "backWithoutHex", "factor", "xScale", "yScale", "p", "motion", "addPropertyControls", "ControlType", "containerStyles", "emptyStateStyle", "containerStyles", "NullState", "Y", "_", "ref", "p", "o", "e", "t", "h", "defaultEvents", "ControlType", "findByArray", "arr", "search", "a", "getIconSelection", "iconKeys", "selectByList", "iconSearch", "iconSelection", "lowercaseIconKeyPairs", "iconSearchTerm", "_iconSearchTerm", "useIconSelection", "iconSearchResult", "se", "moduleBaseUrl", "icons", "iconKeys", "weightOptions", "styleKeyOptions", "styleOptionPropKeys", "optionKey", "lowercaseIconKeyPairs", "res", "key", "Icon", "props", "color", "selectByList", "iconSearch", "iconSelection", "onClick", "onMouseDown", "onMouseUp", "onMouseEnter", "onMouseLeave", "mirrored", "style", "isMounted", "pe", "iconKey", "useIconSelection", "styleOptionProps", "prop", "iconStyle", "se", "iconStyleKey", "activeStyle", "SelectedIcon", "setSelectedIcon", "ye", "h", "npm_react_18_1_exports", "importModule", "module", "ue", "emptyState", "RenderTarget", "p", "NullState", "motion", "hideStyleOptions", "styleOptions", "styleOptionsNumber", "name", "getIconSelection", "icon", "addPropertyControls", "ControlType", "result", "defaultEvents", "head_js_0_0_exports", "__export", "Afro", "Airy", "Caesar", "Chongo", "Curly", "Hijab", "Hijab2", "Long", "NoHair", "Pony", "Rad", "Short", "Short2", "Short3", "Top", "Turban", "Turban2", "Wavy", "Afro", "Y", "props", "ref", "skin", "hair", "B", "Airy", "Caesar", "Chongo", "Curly", "Hijab", "Hijab2", "x", "Long", "NoHair", "Pony", "Rad", "Short", "Short2", "Short3", "Top", "Turban", "Turban2", "Wavy", "body_js_0_0_exports", "__export", "Hoodie", "Jacket", "Jacket2", "Lab", "Long", "Pointing", "Pointing2", "Pregnant", "Trench", "Turtle", "Hoodie", "Y", "props", "ref", "skin", "clothes", "clothes2", "B", "Jacket", "Jacket2", "Lab", "Long", "Pointing", "Pointing2", "Pregnant", "Trench", "Turtle", "sitting_js_0_0_exports", "__export", "Baggy", "Skinny", "Sweat", "Wheelchair", "Baggy", "Y", "props", "ref", "skin", "B", "Skinny", "Sweat", "Wheelchair", "standing_js_0_0_exports", "__export", "Baggy", "Jogging", "Shorts", "Skinny", "Skinny2", "Skirt", "Sprint", "Sweatpants", "Baggy", "Y", "props", "ref", "skin", "B", "Jogging", "Shorts", "shadowSkin", "Color", "Skinny", "Skinny2", "Skirt", "Sprint", "Sweatpants", "setViewBox", "isStanding", "Humaaans", "props", "headSelection", "sittingSelection", "standingSelection", "bodySelection", "skin", "hair", "direction", "onClick", "onMouseEnter", "onMouseLeave", "HeadElement", "head_js_0_0_exports", "BottomElement", "standing_js_0_0_exports", "sitting_js_0_0_exports", "BodyElement", "body_js_0_0_exports", "viewBox", "p", "u", "Illustrations", "addPropertyControls", "ControlType", "k", "fontStore", "fonts", "css", "className", "MaterialFonts", "getFonts", "Icon", "HumaaansFonts", "Humaaans", "PatternFonts", "Pattern", "breakpoints", "isBrowser", "variantClassNames", "removeHiddenBreakpointLayers", "humanReadableVariantMap", "transitions", "transformTemplate", "_", "t", "transformTemplate1", "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", "defaultLayoutId", "ae", "p", "GeneratedComponentContext", "LayoutGroup", "u", "motion", "cx", "PropertyOverrides", "x", "Link", "RichText", "Container", "Icon", "Humaaans", "Pattern", "css", "FrameraugiA20Il", "withCSS", "addFonts", "MaterialFonts", "HumaaansFonts", "PatternFonts", "fonts", "__FramerMetadata__"]
}
