{
  "version": 3,
  "sources": ["import-map:https://framerusercontent.com/modules/0ZSF8VJcL5AhXebKiUw3/nbsZGufHZBGrLw7CNirb/Mailchimp.js", "import-map:https://framerusercontent.com/modules/EOGbER4aJiZYjhW5L2YN/keCMT97Ls7Jj0Qlz4Tzp/XMK8q2W6e.js", "import-map:https://framerusercontent.com/modules/vgTa5uEU9qT5o3wBhSZ9/WygzpKXbLTjLparUZBCK/aHja_7SN8.js", "import-map:https://framerusercontent.com/modules/1YXLdlafbI5CFWtIOFwL/KWCytDFlGzT5RkJqxaWV/OsWJDxRnp.js", "import-map:https://framerusercontent.com/modules/3mKFSGQqKHV82uOV1eBc/TbXI1XaZFNevVKcgIt7G/isMotionValue.js", "import-map:https://framer.com/m/framer/useAutoMotionValue.js@0.3.0", "import-map:https://jspm.dev/npm:lottie-web@5.7.8!cjs", "import-map:https://framerusercontent.com/modules/YbkSqZ7STzW5WsMb1yan/DuKVeg9nOFqZ2BwKOWuY/Lottie.js", "import-map:https://framerusercontent.com/modules/YbkSqZ7STzW5WsMb1yan/IVV7KAhLhLItRCI4O28N/Lottie.js", "import-map:https://framerusercontent.com/modules/g570QuEgwZ19YLGLYITz/wl15RYWtoPOtSi44AAkd/augiA20Il.js"],
  "sourcesContent": ["import { jsx as _jsx, jsxs as _jsxs } from \"react/jsx-runtime\";\nimport { useCallback, useMemo, useState } from \"react\";\nimport { addPropertyControls, ControlType, RenderTarget, withCSS } from \"framer\";\nimport { motion } from \"framer-motion\";\nimport { containerStyles, usePadding, useRadius, paddingControl, borderRadiusControl, fontControls, useFontControls } from \"https://framer.com/m/framer/default-utils.js@^0.45.0\";\nconst emailRegex = /^(([^<>()[\\]\\\\.,;:\\s@\"]+(\\.[^<>()[\\]\\\\.,;:\\s@\"]+)*)|(\".+\"))@((\\[[0-9]{1,3}\\.[0-9]{1,3}\\.[0-9]{1,3}\\.[0-9]{1,3}\\])|(([a-zA-Z\\-0-9]+\\.)+[a-zA-Z]{2,}))$/;\nconst mailchimpRegex = /^https?:\\/\\/([^\\/]+)[^\\?]+\\??(.+)$/;\n\nconst validateEmail = email => {\n  return emailRegex.test(String(email).toLowerCase());\n};\n\nconst parseMailChimpUrl = url => {\n  var ref;\n  const [, domain, parameters] = (ref = url.replace(\"&amp;\", \"&\").match(mailchimpRegex)) !== null && ref !== void 0 ? ref : [null, null, null];\n  return [domain, new URLSearchParams(parameters)];\n};\n/**\n* MAILCHIMP\n*\n* @framerIntrinsicWidth 430\n* @framerIntrinsicHeight 52\n*\n* @framerSupportedLayoutWidth fixed\n* @framerSupportedLayoutHeight auto\n*/\n\n\nconst Mailchimp = withCSS(function Mailchimp({\n  url,\n  input,\n  button,\n  layout,\n  style,\n  gap,\n  onSubmit,\n  ...props\n}) {\n  const [email1, setEmail] = useState(input.value);\n  const [isError, setError] = useState(false);\n  const [isLoading, setLoading] = useState(false);\n  const [isSuccess, setSuccess] = useState(false);\n  const isCanvas = useMemo(() => {\n    return RenderTarget.current() === RenderTarget.canvas;\n  }, []);\n  const {\n    fontFamily,\n    fontSize,\n    fontWeight\n  } = useFontControls(props);\n  const borderRadius = useRadius(props);\n  const paddingValue = usePadding(props);\n  const validateForm = useCallback(email => {\n    if (email === \"\" || !validateEmail(email)) {\n      setError(true);\n      return false;\n    }\n\n    return true;\n  }, []);\n  const handleChange = useCallback(event => {\n    setError(false);\n    setEmail(event.target.value);\n  }, []);\n  const handleSubmit = useCallback(() => {\n    event.preventDefault();\n    const [domain, parameters] = parseMailChimpUrl(url);\n\n    if (!validateForm(email1) || !domain || !parameters) {\n      setLoading(false);\n    } else {\n      parameters.set(\"MERGE0\", email1) // MERGE0 being Mailchimp's email field name\n      ;\n      fetch(`https://${domain}/subscribe/post`, {\n        method: \"POST\",\n        mode: \"no-cors\",\n        headers: {\n          \"Content-Type\": \"application/x-www-form-urlencoded;charset=UTF-8\"\n        },\n        body: parameters.toString()\n      }).then(response => {\n        setSuccess(true);\n        onSubmit();\n      }).catch(() => {\n        setLoading(false);\n      });\n    }\n  }, [url, email1]);\n  const handleClick = useCallback(() => {\n    setLoading(true);\n  }, []);\n  return /*#__PURE__*/_jsx(motion.div, {\n    style: { ...style,\n      ...containerStyles,\n      \"--framer-mailchimp-placeholder-color\": input.placeholderColor\n    },\n    children: isSuccess ? /*#__PURE__*/_jsx(motion.div, {\n      style: {\n        height: \"60px\",\n        width: \"60px\",\n        background: button.fill,\n        color: button.color,\n        borderRadius: \"50%\",\n        display: \"flex\",\n        justifyContent: \"center\",\n        alignItems: \"center\"\n      },\n      initial: {\n        scale: 0\n      },\n      animate: {\n        scale: 1\n      },\n      transition: {\n        duration: 0.3\n      },\n      children: /*#__PURE__*/_jsx(\"svg\", {\n        xmlns: \"http://www.w3.org/2000/svg\",\n        width: \"28\",\n        height: \"28\",\n        children: /*#__PURE__*/_jsx(\"path\", {\n          d: \"M 2 14 L 10 22 L 26 6\",\n          fill: \"transparent\",\n          strokeWidth: \"4\",\n          stroke: \"currentColor\",\n          strokeLinecap: \"round\"\n        })\n      })\n    }) : /*#__PURE__*/_jsxs(\"form\", {\n      style: {\n        width: \"100%\",\n        display: \"grid\",\n        gap,\n        gridTemplateColumns: layout === \"vertical\" ? \"1fr\" : \"1fr max-content\",\n        gridTemplateRows: layout === \"vertical\" ? \"1fr 1fr\" : \"1fr\"\n      },\n      onSubmit: handleSubmit,\n      method: \"POST\",\n      children: [/*#__PURE__*/_jsx(\"div\", {\n        style: {\n          position: \"absolute\",\n          visibility: \"hidden\"\n        },\n        \"aria-hidden\": \"true\",\n        children: /*#__PURE__*/_jsx(\"input\", {\n          type: \"text\",\n          name: \"b_1487cc549a49109c00fe60a80_93cd7be172\",\n          tabIndex: -1\n        })\n      }), /*#__PURE__*/_jsx(\"input\", {\n        type: \"email\",\n        name: \"email\",\n        placeholder: input.placeholder,\n        value: isCanvas ? input.value : email1,\n        className: \"framer-mailchimp-input\",\n        onChange: handleChange,\n        style: { ...defaultStyle,\n          padding: paddingValue,\n          borderRadius,\n          fontFamily,\n          fontWeight,\n          fontSize,\n          background: input.fill,\n          color: input.color,\n          boxShadow: `inset 0 0 0 1px ${isError ? input.error : \"transparent\"}`\n        }\n      }), /*#__PURE__*/_jsxs(\"div\", {\n        style: {\n          position: \"relative\"\n        },\n        children: [/*#__PURE__*/_jsx(motion.input, {\n          type: \"submit\",\n          value: button.label,\n          onClick: handleClick,\n          style: { ...defaultStyle,\n            cursor: \"pointer\",\n            borderRadius,\n            padding: paddingValue,\n            fontFamily,\n            fontWeight: button.fontWeight,\n            fontSize,\n            background: button.fill,\n            color: button.color,\n            zIndex: 1\n          },\n          transition: {\n            type: \"ease\",\n            duration: 0.3\n          },\n          whileHover: {\n            opacity: 0.8\n          }\n        }), isLoading && /*#__PURE__*/_jsx(\"div\", {\n          style: {\n            borderRadius,\n            position: \"absolute\",\n            display: \"flex\",\n            justifyContent: \"center\",\n            alignItems: \"center\",\n            width: \"100%\",\n            height: \"100%\",\n            left: 0,\n            top: 0,\n            zIndex: 2,\n            color: button.color,\n            background: button.fill\n          },\n          children: /*#__PURE__*/_jsx(motion.div, {\n            style: {\n              height: 16,\n              width: 16\n            },\n            initial: {\n              rotate: 0\n            },\n            animate: {\n              rotate: 360\n            },\n            transition: {\n              duration: 2,\n              repeat: Infinity\n            },\n            children: /*#__PURE__*/_jsxs(\"svg\", {\n              xmlns: \"http://www.w3.org/2000/svg\",\n              width: \"16\",\n              height: \"16\",\n              children: [/*#__PURE__*/_jsx(\"path\", {\n                d: \"M 8 0 C 3.582 0 0 3.582 0 8 C 0 12.419 3.582 16 8 16 C 12.418 16 16 12.419 16 8 C 15.999 3.582 12.418 0 8 0 Z M 8 14 C 4.687 14 2 11.314 2 8 C 2 4.687 4.687 2 8 2 C 11.314 2 14 4.687 14 8 C 14 11.314 11.314 14 8 14 Z\",\n                fill: \"currentColor\",\n                opacity: \"0.2\"\n              }), /*#__PURE__*/_jsx(\"path\", {\n                d: \"M 8 0 C 12.418 0 15.999 3.582 16 8 C 16 8 16 9 15 9 C 14 9 14 8 14 8 C 14 4.687 11.314 2 8 2 C 4.687 2 2 4.687 2 8 C 2 8 2 9 1 9 C 0 9 0 8 0 8 C 0 3.582 3.582 0 8 0 Z\",\n                fill: \"currentColor\"\n              })]\n            })\n          })\n        })]\n      })]\n    })\n  });\n}, [\".framer-mailchimp-input::placeholder { color: var(--framer-mailchimp-placeholder-color) !important; }\"]);\nMailchimp.defaultProps = {\n  fontSize: 16,\n  fontFamily: \"Inter\",\n  fontWeight: 400,\n  padding: 15,\n  paddingTop: 15,\n  paddingBottom: 15,\n  paddingLeft: 15,\n  paddingRight: 15,\n  borderRadius: 8,\n  topLeftRadius: 8,\n  topRightRadius: 8,\n  bottomRightRadius: 8,\n  bottomLeftRadius: 8,\n  gap: 15\n};\naddPropertyControls(Mailchimp, {\n  url: {\n    title: \"URL\",\n    placeholder: \"https://***.us6.list-manage.com/subscribe/post?u=***\",\n    type: ControlType.String,\n    description: \"Create a [Mailchimp](https://mailchimp.com/) account and copy your embedded form URL. [Learn more\u2026](https://www.framer.com/sites/integrations/mailchimp/)\"\n  },\n  layout: {\n    title: \"Layout\",\n    type: ControlType.Enum,\n    options: [\"horizontal\", \"vertical\"],\n    displaySegmentedControl: true\n  },\n  input: {\n    title: \"Input\",\n    type: ControlType.Object,\n    controls: {\n      placeholder: {\n        title: \"Placeholder\",\n        type: ControlType.String,\n        defaultValue: \"email@framer.com\"\n      },\n      placeholderColor: {\n        title: \" \",\n        type: ControlType.Color,\n        defaultValue: \"rgba(0, 0, 0, 0.3)\"\n      },\n      value: {\n        title: \"Value\",\n        type: ControlType.String\n      },\n      fill: {\n        title: \"Fill\",\n        type: ControlType.Color,\n        defaultValue: \"#EBEBEB\"\n      },\n      color: {\n        title: \"Text\",\n        type: ControlType.Color,\n        defaultValue: \"#000\"\n      },\n      error: {\n        title: \"Error\",\n        type: ControlType.Color,\n        defaultValue: \"#EE4444\"\n      }\n    }\n  },\n  button: {\n    title: \"Button\",\n    type: ControlType.Object,\n    controls: {\n      label: {\n        title: \"Label\",\n        type: ControlType.String,\n        defaultValue: \"Sign Up\"\n      },\n      fontWeight: { ...fontControls.fontWeight,\n        defaultValue: 600\n      },\n      fill: {\n        title: \"Fill\",\n        type: ControlType.Color,\n        defaultValue: \"#000\"\n      },\n      color: {\n        title: \"Text\",\n        type: ControlType.Color,\n        defaultValue: \"#FFF\"\n      }\n    }\n  },\n  ...fontControls,\n  fontSize: {\n    title: \"Font Size\",\n    type: ControlType.Number,\n    displayStepper: true,\n    defaultValue: 16\n  },\n  ...paddingControl,\n  ...borderRadiusControl,\n  gap: {\n    title: \"Gap\",\n    type: ControlType.Number,\n    displayStepper: true,\n    min: 0\n  },\n  onSubmit: {\n    type: ControlType.EventHandler\n  }\n});\nconst defaultStyle = {\n  WebkitAppearance: \"none\",\n  width: \"100%\",\n  lineHeight: \"1.4em\",\n  outline: \"none\",\n  border: \"none\"\n};\nexport default Mailchimp;\nexport const __FramerMetadata__ = {\n  \"exports\": {\n    \"default\": {\n      \"type\": \"reactComponent\",\n      \"name\": \"Mailchimp\",\n      \"slots\": [],\n      \"annotations\": {\n        \"framerIntrinsicHeight\": \"52\",\n        \"framerIntrinsicWidth\": \"430\",\n        \"framerContractVersion\": \"1\",\n        \"framerSupportedLayoutHeight\": \"auto\",\n        \"framerSupportedLayoutWidth\": \"fixed\"\n      }\n    },\n    \"__FramerMetadata__\": {\n      \"type\": \"variable\"\n    }\n  }\n}; //# sourceMappingURL=./Mailchimp.map", "import { jsx as _jsx } from \"react/jsx-runtime\"; // Generated by Framer (6d1243e)\n\nimport * as React from \"react\";\nimport { motion, LayoutGroup } from \"framer-motion\";\nimport { addFonts, withCSS, cx, useVariantState, getFonts } from \"framer\";\nimport Mailchimp from \"https://framerusercontent.com/modules/0ZSF8VJcL5AhXebKiUw3/nbsZGufHZBGrLw7CNirb/Mailchimp.js\";\nconst MailchimpFonts = getFonts(Mailchimp);\nconst cycleOrder = [\"nak16dI2U\"];\nconst variantClassNames = {\n  nak16dI2U: \"framer-v-117w237\"\n};\n\nfunction addPropertyOverrides(overrides, ...variants) {\n  const nextOverrides = {};\n  variants === null || variants === void 0 ? void 0 : variants.forEach(variant => variant && Object.assign(nextOverrides, overrides[variant]));\n  return nextOverrides;\n}\n\nconst humanReadableVariantMap = {};\nconst transitions = {\n  default: {\n    type: \"spring\",\n    ease: [.44, 0, .56, 1],\n    duration: .3,\n    delay: 0,\n    stiffness: 500,\n    damping: 60,\n    mass: 1\n  }\n};\nconst BASE62 = \"0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz\";\n\nconst useRandomID = () => {\n  const ref = React.useRef(null);\n\n  if (ref.current === null) {\n    ref.current = Array(5).fill(0).map(() => BASE62[Math.floor(Math.random() * BASE62.length)]).join(\"\");\n  }\n\n  return ref.current;\n};\n\nconst Component = /*#__PURE__*/React.forwardRef(function ({\n  id,\n  style: externalStyle = {},\n  className,\n  width,\n  height,\n  layoutId,\n  variant: outerVariant = \"nak16dI2U\",\n  ...restProps\n}, ref) {\n  const outerVariantId = humanReadableVariantMap[outerVariant];\n  const variant = outerVariantId || outerVariant;\n  const {\n    variants,\n    baseVariant,\n    gestureVariant,\n    classNames,\n    transition,\n    setVariant,\n    setGestureState\n  } = useVariantState({\n    defaultVariant: \"nak16dI2U\",\n    variant,\n    transitions,\n    variantClassNames,\n    cycleOrder\n  });\n  const layoutDependency = variants.join(\"-\") + restProps.layoutDependency;\n  const defaultLayoutId = useRandomID();\n  const {\n    pointerEvents,\n    ...style\n  } = externalStyle;\n  return /*#__PURE__*/_jsx(LayoutGroup, {\n    id: layoutId !== null && layoutId !== void 0 ? layoutId : defaultLayoutId,\n    children: /*#__PURE__*/_jsx(motion.div, {\n      \"data-framer-generated\": true,\n      initial: variant,\n      animate: variants,\n      onHoverStart: () => setGestureState({\n        isHovered: true\n      }),\n      onHoverEnd: () => setGestureState({\n        isHovered: false\n      }),\n      onTapStart: () => setGestureState({\n        isPressed: true\n      }),\n      onTap: () => setGestureState({\n        isPressed: false\n      }),\n      onTapCancel: () => setGestureState({\n        isPressed: false\n      }),\n      className: cx(\"framer-EsXo8\", classNames),\n      style: {\n        display: \"contents\",\n        pointerEvents: pointerEvents !== null && pointerEvents !== void 0 ? pointerEvents : undefined\n      },\n      children: /*#__PURE__*/_jsx(motion.div, { ...restProps,\n        className: cx(\"framer-117w237\", className),\n        style: {\n          backgroundColor: \"rgba(0, 0, 0, 0)\",\n          ...style\n        },\n        layoutId: \"nak16dI2U\",\n        transition: transition,\n        layoutDependency: layoutDependency,\n        \"data-framer-name\": \"Variant 1\",\n        ref: ref,\n        children: /*#__PURE__*/_jsx(motion.div, {\n          style: {},\n          className: \"framer-7rinlp-container\",\n          layoutId: \"vf_SWp37N-container\",\n          transition: transition,\n          layoutDependency: layoutDependency,\n          children: /*#__PURE__*/_jsx(Mailchimp, {\n            width: \"100%\",\n            height: \"100%\",\n            layoutId: \"vf_SWp37N\",\n            id: \"vf_SWp37N\",\n            url: \"https://xyz.us8.list-manage.com/subscribe/post?u=ca36598d58f6acc2f3f56029d&amp;id=5031d1ad8d\",\n            layout: \"horizontal\",\n            input: {\n              placeholder: \"elon@musk.com\",\n              placeholderColor: \"rgb(163, 167, 169)\",\n              value: \"\",\n              fill: \"rgb(235, 235, 235)\",\n              color: \"rgb(0, 0, 0)\",\n              error: \"rgb(238, 68, 68)\"\n            },\n            button: {\n              label: \"Join Waitlist\",\n              fontWeight: 600,\n              fill: \"rgb(171, 74, 186)\",\n              color: \"rgb(255, 255, 255)\"\n            },\n            font: true,\n            fontFamily: \"Gilroy\",\n            fontWeight: 700,\n            fontSize: 16,\n            padding: 15,\n            paddingPerSide: true,\n            paddingTop: 10,\n            paddingRight: 25,\n            paddingBottom: 10,\n            paddingLeft: 25,\n            borderRadius: 8,\n            isMixedBorderRadius: false,\n            topLeftRadius: 8,\n            topRightRadius: 8,\n            bottomRightRadius: 8,\n            bottomLeftRadius: 8,\n            gap: 15,\n            style: {\n              width: \"100%\"\n            }\n          })\n        })\n      })\n    })\n  });\n});\nconst css = ['.framer-EsXo8 [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none;}', \"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\", \".framer-EsXo8 * { box-sizing: border-box; }\", \".framer-EsXo8 .framer-117w237 { position: relative; width: 636px; height: 124px; }\", \".framer-EsXo8 .framer-7rinlp-container { position: absolute; height: auto; right: 200px; left: 0px; top: 0px; flex: none; }\"];\n/**\n* This is a generated Framer component.\n* @framerIntrinsicHeight 124\n* @framerIntrinsicWidth 636\n* @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n*/\n\nconst FramerXMK8q2W6e = withCSS(Component, css);\nexport default FramerXMK8q2W6e;\nFramerXMK8q2W6e.displayName = \"lol\";\nFramerXMK8q2W6e.defaultProps = {\n  width: 636,\n  height: 124\n};\naddFonts(FramerXMK8q2W6e, [...MailchimpFonts]);\nexport const __FramerMetadata__ = {\n  \"exports\": {\n    \"Props\": {\n      \"type\": \"tsType\",\n      \"annotations\": {\n        \"framerContractVersion\": \"1\"\n      }\n    },\n    \"default\": {\n      \"type\": \"reactComponent\",\n      \"name\": \"FramerXMK8q2W6e\",\n      \"slots\": [],\n      \"annotations\": {\n        \"framerIntrinsicWidth\": \"636\",\n        \"framerContractVersion\": \"1\",\n        \"framerIntrinsicHeight\": \"124\",\n        \"framerCanvasComponentVariantDetails\": \"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\"\n      }\n    },\n    \"__FramerMetadata__\": {\n      \"type\": \"variable\"\n    }\n  }\n}; //# sourceMappingURL=./XMK8q2W6e.map", "import { jsx as _jsx, jsxs as _jsxs } from \"react/jsx-runtime\"; // Generated by Framer (6d1243e)\n\nimport * as React from \"react\";\nimport { motion, LayoutGroup } from \"framer-motion\";\nimport { addFonts, withCSS, addPropertyControls, ControlType, cx, useVariantState, RichText, getFonts, Stack } from \"framer\";\nimport Mailchimp from \"https://framerusercontent.com/modules/0ZSF8VJcL5AhXebKiUw3/nbsZGufHZBGrLw7CNirb/Mailchimp.js\";\nconst MailchimpFonts = getFonts(Mailchimp);\nconst cycleOrder = [\"XaNh_2Z73\", \"hKrdI8KiK\", \"XGXvFO5Uw\"];\nconst variantClassNames = {\n  XaNh_2Z73: \"framer-v-ws78oz\",\n  XGXvFO5Uw: \"framer-v-19j7ll0\",\n  hKrdI8KiK: \"framer-v-vz2bd5\"\n};\n\nfunction addPropertyOverrides(overrides, ...variants) {\n  const nextOverrides = {};\n  variants === null || variants === void 0 ? void 0 : variants.forEach(variant => variant && Object.assign(nextOverrides, overrides[variant]));\n  return nextOverrides;\n}\n\nconst humanReadableVariantMap = {\n  Desktop: \"XaNh_2Z73\",\n  Tablet: \"hKrdI8KiK\",\n  Phone: \"XGXvFO5Uw\"\n};\nconst transitions = {\n  default: {\n    type: \"spring\",\n    ease: [.44, 0, .56, 1],\n    duration: .3,\n    delay: 0,\n    stiffness: 500,\n    damping: 60,\n    mass: 1\n  }\n};\nconst BASE62 = \"0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz\";\n\nconst useRandomID = () => {\n  const ref = React.useRef(null);\n\n  if (ref.current === null) {\n    ref.current = Array(5).fill(0).map(() => BASE62[Math.floor(Math.random() * BASE62.length)]).join(\"\");\n  }\n\n  return ref.current;\n};\n\nconst Component = /*#__PURE__*/React.forwardRef(function ({\n  id,\n  style: externalStyle = {},\n  className,\n  width,\n  height,\n  layoutId,\n  variant: outerVariant = \"XaNh_2Z73\",\n  ...restProps\n}, ref) {\n  const outerVariantId = humanReadableVariantMap[outerVariant];\n  const variant = outerVariantId || outerVariant;\n  const {\n    variants,\n    baseVariant,\n    gestureVariant,\n    classNames,\n    transition,\n    setVariant,\n    setGestureState\n  } = useVariantState({\n    defaultVariant: \"XaNh_2Z73\",\n    variant,\n    transitions,\n    variantClassNames,\n    cycleOrder\n  });\n  const layoutDependency = variants.join(\"-\") + restProps.layoutDependency;\n  const defaultLayoutId = useRandomID();\n  const {\n    pointerEvents,\n    ...style\n  } = externalStyle;\n  return /*#__PURE__*/_jsx(LayoutGroup, {\n    id: layoutId !== null && layoutId !== void 0 ? layoutId : defaultLayoutId,\n    children: /*#__PURE__*/_jsx(motion.div, {\n      \"data-framer-generated\": true,\n      initial: variant,\n      animate: variants,\n      onHoverStart: () => setGestureState({\n        isHovered: true\n      }),\n      onHoverEnd: () => setGestureState({\n        isHovered: false\n      }),\n      onTapStart: () => setGestureState({\n        isPressed: true\n      }),\n      onTap: () => setGestureState({\n        isPressed: false\n      }),\n      onTapCancel: () => setGestureState({\n        isPressed: false\n      }),\n      className: cx(\"framer-Is0P3\", classNames),\n      style: {\n        display: \"contents\",\n        pointerEvents: pointerEvents !== null && pointerEvents !== void 0 ? pointerEvents : undefined\n      },\n      children: /*#__PURE__*/_jsx(Stack, { ...restProps,\n        className: cx(\"framer-ws78oz\", className),\n        style: { ...style\n        },\n        layoutId: \"XaNh_2Z73\",\n        transition: transition,\n        layoutDependency: layoutDependency,\n        background: null,\n        direction: \"horizontal\",\n        distribution: \"center\",\n        alignment: \"center\",\n        gap: 10,\n        __fromCanvasComponent: true,\n        __contentWrapperStyle: {\n          width: \"100%\",\n          height: \"auto\",\n          padding: \"100px 40px 100px 40px\"\n        },\n        \"data-framer-name\": \"Desktop\",\n        ref: ref,\n        ...addPropertyOverrides({\n          XGXvFO5Uw: {\n            center: false,\n            \"data-framer-name\": \"Phone\",\n            __contentWrapperStyle: {\n              width: \"100%\",\n              height: \"auto\",\n              padding: \"60px 20px 60px 20px\"\n            },\n            background: null\n          },\n          hKrdI8KiK: {\n            center: false,\n            \"data-framer-name\": \"Tablet\",\n            __contentWrapperStyle: {\n              width: \"100%\",\n              height: \"auto\",\n              padding: \"60px 40px 60px 40px\"\n            },\n            background: null\n          }\n        }, baseVariant, gestureVariant),\n        children: /*#__PURE__*/_jsxs(Stack, {\n          className: \"framer-1cm1qmo\",\n          style: {},\n          layoutId: \"jumJmwWMx\",\n          transition: transition,\n          layoutDependency: layoutDependency,\n          background: null,\n          direction: \"vertical\",\n          distribution: \"start\",\n          alignment: \"center\",\n          gap: 40,\n          __fromCanvasComponent: true,\n          __contentWrapperStyle: {\n            width: \"100%\",\n            height: \"auto\",\n            padding: \"0px 0px 0px 0px\",\n            maxWidth: \"1000px\"\n          },\n          ...addPropertyOverrides({\n            XGXvFO5Uw: {\n              center: false,\n              direction: \"vertical\",\n              alignment: \"start\",\n              distribution: \"start\",\n              gap: 40,\n              __contentWrapperStyle: {\n                width: \"100%\",\n                height: \"auto\",\n                padding: \"0px 0px 0px 0px\",\n                maxWidth: \"1000px\"\n              },\n              background: null\n            },\n            hKrdI8KiK: {\n              center: false,\n              gap: 40,\n              __contentWrapperStyle: {\n                width: \"100%\",\n                height: \"auto\",\n                padding: \"0px 0px 0px 0px\",\n                maxWidth: \"1000px\"\n              },\n              background: null\n            }\n          }, baseVariant, gestureVariant),\n          children: [/*#__PURE__*/_jsx(RichText, {\n            className: \"framer-1fmayc7\",\n            style: {\n              \"--framer-paragraph-spacing\": \"0px\",\n              \"--framer-link-text-color\": \"rgb(255, 255, 255)\",\n              \"--framer-link-text-decoration\": \"underline\",\n              whiteSpace: \"pre\",\n              \"--extracted-1k2zljd\": \"rgb(255, 255, 255)\",\n              \"--extracted-7n17er\": \"rgb(255, 255, 255)\"\n            },\n            layoutId: \"d5YesDriL\",\n            transition: transition,\n            layoutDependency: layoutDependency,\n            fonts: [\"CUSTOM;Gilroy Black\"],\n            withExternalLayout: true,\n            verticalAlignment: \"top\",\n            __fromCanvasComponent: true,\n            __htmlStructure: '<h3 style=\"--framer-line-height:1.1em; --framer-text-alignment:center;\"><span style=\"--framer-font-family:&quot;Gilroy Black&quot;, serif; --framer-font-style:normal; --framer-font-weight:400; --font-selector:Q1VTVE9NO0dpbHJveSBCbGFjaw==; --framer-text-color:var(--extracted-1k2zljd); --framer-font-size:54px; --framer-letter-spacing:-0.5px;\">{{ text-placeholder }}</span></h3>',\n            htmlFromDesign: '<h3 style=\"--framer-line-height:1.1em; --framer-text-alignment:center;\"><span style=\"--framer-font-family:&quot;Gilroy Black&quot;, serif; --framer-font-style:normal; --framer-font-weight:400; --font-selector:Q1VTVE9NO0dpbHJveSBCbGFjaw==; --framer-text-color:var(--extracted-1k2zljd); --framer-font-size:54px; --framer-letter-spacing:-0.5px;\">Ready to start?</span></h3><h3 style=\"--framer-line-height:1.1em; --framer-text-alignment:center;\"><span style=\"--framer-font-family:&quot;Gilroy Black&quot;, serif; --framer-font-style:normal; --framer-font-weight:400; --font-selector:Q1VTVE9NO0dpbHJveSBCbGFjaw==; --framer-text-color:var(--extracted-7n17er); --framer-font-size:54px; --framer-letter-spacing:-0.5px;\">Sign up for the waitlist.</span></h3>',\n            variants: {\n              XGXvFO5Uw: {\n                \"--extracted-1k2zljd\": \"rgb(255, 255, 255)\",\n                \"--extracted-7n17er\": \"rgb(255, 255, 255)\"\n              }\n            },\n            ...addPropertyOverrides({\n              XGXvFO5Uw: {\n                fonts: [\"CUSTOM;Gilroy Black\"],\n                __htmlStructure: '<h3 style=\"--framer-line-height:1.1em; --framer-text-alignment:center;\"><span style=\"--framer-font-family:&quot;Gilroy Black&quot;, serif; --framer-font-style:normal; --framer-font-weight:400; --font-selector:Q1VTVE9NO0dpbHJveSBCbGFjaw==; --framer-text-color:var(--extracted-1k2zljd); --framer-font-size:36px; --framer-letter-spacing:-0.5px;\">{{ text-placeholder }}</span></h3>',\n                htmlFromDesign: '<h3 style=\"--framer-line-height:1.1em; --framer-text-alignment:center;\"><span style=\"--framer-font-family:&quot;Gilroy Black&quot;, serif; --framer-font-style:normal; --framer-font-weight:400; --font-selector:Q1VTVE9NO0dpbHJveSBCbGFjaw==; --framer-text-color:var(--extracted-1k2zljd); --framer-font-size:36px; --framer-letter-spacing:-0.5px;\">Ready to start?</span></h3><h3 style=\"--framer-line-height:1.1em; --framer-text-alignment:center;\"><span style=\"--framer-font-family:&quot;Gilroy Black&quot;, serif; --framer-font-style:normal; --framer-font-weight:400; --font-selector:Q1VTVE9NO0dpbHJveSBCbGFjaw==; --framer-text-color:var(--extracted-7n17er); --framer-font-size:36px; --framer-letter-spacing:-0.5px;\">Sign up for the waitlist.</span></h3>',\n                preload: []\n              }\n            }, baseVariant, gestureVariant)\n          }), /*#__PURE__*/_jsx(Stack, {\n            className: \"framer-otq6xk\",\n            style: {},\n            layoutId: \"uBvn5ayl1\",\n            transition: transition,\n            layoutDependency: layoutDependency,\n            background: null,\n            direction: \"horizontal\",\n            distribution: \"start\",\n            alignment: \"end\",\n            gap: 20,\n            __fromCanvasComponent: true,\n            __contentWrapperStyle: {\n              width: \"auto\",\n              height: \"auto\",\n              padding: \"0px 0px 0px 0px\"\n            },\n            ...addPropertyOverrides({\n              XGXvFO5Uw: {\n                center: false,\n                direction: \"vertical\",\n                gap: 10,\n                __contentWrapperStyle: {\n                  width: \"100%\",\n                  height: \"auto\",\n                  padding: \"0px 0px 0px 0px\"\n                },\n                background: null\n              }\n            }, baseVariant, gestureVariant),\n            children: /*#__PURE__*/_jsx(motion.div, {\n              style: {},\n              className: \"framer-ibi45l-container\",\n              layoutId: \"GnXBz_0UV-container\",\n              transition: transition,\n              layoutDependency: layoutDependency,\n              ...addPropertyOverrides({\n                XGXvFO5Uw: {\n                  transformTemplate: undefined\n                }\n              }, baseVariant, gestureVariant),\n              children: /*#__PURE__*/_jsx(Mailchimp, {\n                width: \"100%\",\n                height: \"100%\",\n                layoutId: \"GnXBz_0UV\",\n                id: \"GnXBz_0UV\",\n                url: \"https://xyz.us8.list-manage.com/subscribe/post?u=ca36598d58f6acc2f3f56029d&amp;id=5031d1ad8d\",\n                layout: \"horizontal\",\n                input: {\n                  placeholder: \"elon@musk.com\",\n                  placeholderColor: \"rgb(163, 167, 169)\",\n                  value: \"\",\n                  fill: \"rgb(235, 235, 235)\",\n                  color: \"rgb(0, 0, 0)\",\n                  error: \"rgb(238, 68, 68)\"\n                },\n                button: {\n                  label: \"Join Waitlist\",\n                  fontWeight: 600,\n                  fill: \"rgb(192, 53, 251)\",\n                  color: \"rgb(255, 255, 255)\"\n                },\n                font: true,\n                fontFamily: \"Gilroy\",\n                fontWeight: 700,\n                fontSize: 16,\n                padding: 15,\n                paddingPerSide: true,\n                paddingTop: 10,\n                paddingRight: 25,\n                paddingBottom: 10,\n                paddingLeft: 25,\n                borderRadius: 8,\n                isMixedBorderRadius: false,\n                topLeftRadius: 8,\n                topRightRadius: 8,\n                bottomRightRadius: 8,\n                bottomLeftRadius: 8,\n                gap: 15,\n                style: {\n                  width: \"100%\"\n                },\n                ...addPropertyOverrides({\n                  XGXvFO5Uw: {\n                    layout: \"vertical\",\n                    style: {\n                      width: \"100%\"\n                    }\n                  }\n                }, baseVariant, gestureVariant)\n              })\n            })\n          })]\n        })\n      })\n    })\n  });\n});\nconst css = ['.framer-Is0P3 [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none;}', \"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\", \".framer-Is0P3 * { box-sizing: border-box; }\", \".framer-Is0P3 .framer-ws78oz { position: relative; overflow: visible; width: 1200px; height: min-content; }\", \".framer-Is0P3 .framer-1cm1qmo { position: relative; overflow: visible; max-width: 1000px; width: 1px; height: min-content; flex: 1 0 0px; }\", \".framer-Is0P3 .framer-1fmayc7 { position: relative; width: auto; height: auto; flex: none; white-space: pre; }\", \".framer-Is0P3 .framer-otq6xk { position: relative; overflow: visible; width: min-content; height: min-content; flex: none; }\", \".framer-Is0P3 .framer-ibi45l-container { position: relative; width: 430px; height: auto; flex: none; }\", \".framer-Is0P3.framer-v-19j7ll0 .framer-ws78oz { width: 390px; height: min-content; }\", \".framer-Is0P3.framer-v-19j7ll0 .framer-1cm1qmo, .framer-Is0P3.framer-v-vz2bd5 .framer-1cm1qmo { width: 1px; height: min-content; right: auto; bottom: auto; left: auto; top: auto; flex: 1 0 0px; align-self: auto; aspect-ratio: unset; }\", \".framer-Is0P3.framer-v-19j7ll0 .framer-1fmayc7 { width: 100%; height: auto; right: auto; bottom: auto; left: auto; top: auto; flex: none; align-self: auto; white-space: pre-wrap; word-wrap: break-word; word-break: break-word; aspect-ratio: unset; }\", \".framer-Is0P3.framer-v-19j7ll0 .framer-otq6xk { width: 100%; height: min-content; right: auto; bottom: auto; left: auto; top: auto; flex: none; align-self: auto; aspect-ratio: unset; }\", \".framer-Is0P3.framer-v-19j7ll0 .framer-ibi45l-container { width: 350px; height: auto; right: auto; bottom: auto; left: auto; top: auto; flex: none; align-self: auto; aspect-ratio: unset; }\", \".framer-Is0P3.framer-v-vz2bd5 .framer-ws78oz { width: 810px; height: min-content; }\"];\n/**\n* This is a generated Framer component.\n* @framerIntrinsicHeight 200\n* @framerIntrinsicWidth 1200\n* @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"XGXvFO5Uw\":{\"layout\":[\"fixed\",\"auto\"]},\"hKrdI8KiK\":{\"layout\":[\"fixed\",\"auto\"]}}}\n*/\n\nconst FrameraHja_7SN8 = withCSS(Component, css);\nexport default FrameraHja_7SN8;\nFrameraHja_7SN8.displayName = \"Pivot Center\";\nFrameraHja_7SN8.defaultProps = {\n  width: 1200,\n  height: 200\n};\naddPropertyControls(FrameraHja_7SN8, {\n  variant: {\n    type: ControlType.Enum,\n    title: \"Variant\",\n    options: [\"XaNh_2Z73\", \"hKrdI8KiK\", \"XGXvFO5Uw\"],\n    optionTitles: [\"Desktop\", \"Tablet\", \"Phone\"]\n  }\n});\naddFonts(FrameraHja_7SN8, [{\n  url: new URL(\"https://framerusercontent.com/modules/assets/thRwr6ycYjNzUNSWB5tKDoVeX4k~sX5m6wp9rKMXZdd_qZO0J2loSY-E2KczdAFd4WcAhRE.otf\").href,\n  family: \"Gilroy Black\",\n  moduleAsset: {\n    url: \"assets/thRwr6ycYjNzUNSWB5tKDoVeX4k.otf\",\n    localModuleIdentifier: \"local-module:canvasComponent/aHja_7SN8:default\"\n  }\n}, ...MailchimpFonts]);\nexport const __FramerMetadata__ = {\n  \"exports\": {\n    \"Props\": {\n      \"type\": \"tsType\",\n      \"annotations\": {\n        \"framerContractVersion\": \"1\"\n      }\n    },\n    \"default\": {\n      \"type\": \"reactComponent\",\n      \"name\": \"FrameraHja_7SN8\",\n      \"slots\": [],\n      \"annotations\": {\n        \"framerCanvasComponentVariantDetails\": \"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"XGXvFO5Uw\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"hKrdI8KiK\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\n        \"framerIntrinsicHeight\": \"200\",\n        \"framerContractVersion\": \"1\",\n        \"framerIntrinsicWidth\": \"1200\"\n      }\n    },\n    \"__FramerMetadata__\": {\n      \"type\": \"variable\"\n    }\n  }\n}; //# sourceMappingURL=./aHja_7SN8.map", "import { jsx as _jsx } from \"react/jsx-runtime\"; // Generated by Framer (6d1243e)\n\nimport * as React from \"react\";\nimport { motion, LayoutGroup } from \"framer-motion\";\nimport { addFonts, withCSS, addPropertyControls, ControlType, cx, useVariantState, RichText, Stack } from \"framer\";\nconst cycleOrder = [\"yIsIPtz6b\", \"C0jWRpcE5\", \"V41pgHaRL\"];\nconst variantClassNames = {\n  yIsIPtz6b: \"framer-v-1kw03xy\",\n  C0jWRpcE5: \"framer-v-1twyyrq\",\n  V41pgHaRL: \"framer-v-1q1ij28\"\n};\n\nfunction addPropertyOverrides(overrides, ...variants) {\n  const nextOverrides = {};\n  variants === null || variants === void 0 ? void 0 : variants.forEach(variant => variant && Object.assign(nextOverrides, overrides[variant]));\n  return nextOverrides;\n}\n\nconst humanReadableVariantMap = {\n  Desktop: \"yIsIPtz6b\",\n  Tablet: \"C0jWRpcE5\",\n  Phone: \"V41pgHaRL\"\n};\nconst transitions = {\n  default: {\n    type: \"spring\",\n    ease: [.44, 0, .56, 1],\n    duration: .3,\n    delay: 0,\n    stiffness: 500,\n    damping: 60,\n    mass: 1\n  }\n};\nconst BASE62 = \"0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz\";\n\nconst useRandomID = () => {\n  const ref = React.useRef(null);\n\n  if (ref.current === null) {\n    ref.current = Array(5).fill(0).map(() => BASE62[Math.floor(Math.random() * BASE62.length)]).join(\"\");\n  }\n\n  return ref.current;\n};\n\nconst Component = /*#__PURE__*/React.forwardRef(function ({\n  id,\n  style: externalStyle = {},\n  className,\n  width,\n  height,\n  layoutId,\n  variant: outerVariant = \"yIsIPtz6b\",\n  ...restProps\n}, ref) {\n  const outerVariantId = humanReadableVariantMap[outerVariant];\n  const variant = outerVariantId || outerVariant;\n  const {\n    variants,\n    baseVariant,\n    gestureVariant,\n    classNames,\n    transition,\n    setVariant,\n    setGestureState\n  } = useVariantState({\n    defaultVariant: \"yIsIPtz6b\",\n    variant,\n    transitions,\n    variantClassNames,\n    cycleOrder\n  });\n  const layoutDependency = variants.join(\"-\") + restProps.layoutDependency;\n  const defaultLayoutId = useRandomID();\n  const {\n    pointerEvents,\n    ...style\n  } = externalStyle;\n  return /*#__PURE__*/_jsx(LayoutGroup, {\n    id: layoutId !== null && layoutId !== void 0 ? layoutId : defaultLayoutId,\n    children: /*#__PURE__*/_jsx(motion.div, {\n      \"data-framer-generated\": true,\n      initial: variant,\n      animate: variants,\n      onHoverStart: () => setGestureState({\n        isHovered: true\n      }),\n      onHoverEnd: () => setGestureState({\n        isHovered: false\n      }),\n      onTapStart: () => setGestureState({\n        isPressed: true\n      }),\n      onTap: () => setGestureState({\n        isPressed: false\n      }),\n      onTapCancel: () => setGestureState({\n        isPressed: false\n      }),\n      className: cx(\"framer-Gadow\", classNames),\n      style: {\n        display: \"contents\",\n        pointerEvents: pointerEvents !== null && pointerEvents !== void 0 ? pointerEvents : undefined\n      },\n      children: /*#__PURE__*/_jsx(Stack, { ...restProps,\n        className: cx(\"framer-1kw03xy\", className),\n        style: {\n          backgroundColor: \"rgb(16, 25, 33)\",\n          \"--border-left-width\": \"0px\",\n          \"--border-right-width\": \"0px\",\n          \"--border-top-width\": \"1px\",\n          \"--border-bottom-width\": \"0px\",\n          \"--border-style\": \"solid\",\n          \"--border-color\": \"rgba(0, 0, 0, 0.05)\",\n          ...style\n        },\n        layoutId: \"yIsIPtz6b\",\n        transition: transition,\n        layoutDependency: layoutDependency,\n        as: \"footer\",\n        direction: \"horizontal\",\n        distribution: \"space-between\",\n        alignment: \"center\",\n        gap: 30,\n        __fromCanvasComponent: true,\n        __contentWrapperStyle: {\n          width: \"100%\",\n          height: \"auto\",\n          padding: \"20px 40px 20px 40px\"\n        },\n        \"data-framer-name\": \"Desktop\",\n        \"data-border\": true,\n        ref: ref,\n        variants: {\n          C0jWRpcE5: {\n            backgroundColor: \"rgb(16, 25, 33)\"\n          },\n          V41pgHaRL: {\n            backgroundColor: \"rgb(16, 25, 33)\"\n          }\n        },\n        ...addPropertyOverrides({\n          C0jWRpcE5: {\n            center: false,\n            \"data-framer-name\": \"Tablet\",\n            __contentWrapperStyle: {\n              width: \"100%\",\n              height: \"auto\",\n              padding: \"20px 40px 20px 40px\"\n            }\n          },\n          V41pgHaRL: {\n            center: false,\n            direction: \"vertical\",\n            distribution: \"start\",\n            gap: 20,\n            \"data-framer-name\": \"Phone\",\n            __contentWrapperStyle: {\n              width: \"100%\",\n              height: \"auto\",\n              padding: \"20px 20px 20px 20px\"\n            }\n          }\n        }, baseVariant, gestureVariant),\n        children: /*#__PURE__*/_jsx(RichText, {\n          className: \"framer-clod69\",\n          style: {\n            \"--framer-paragraph-spacing\": \"0px\",\n            \"--framer-link-text-decoration\": \"none\",\n            \"--framer-link-hover-text-color\": \"rgba(153, 153, 153, 0.6)\",\n            whiteSpace: \"pre-wrap\",\n            wordWrap: \"break-word\",\n            wordBreak: \"break-word\",\n            \"--extracted-1w3ko1f\": \"rgb(255, 255, 255)\"\n          },\n          layoutId: \"vKIFHkILV\",\n          transition: transition,\n          layoutDependency: layoutDependency,\n          fonts: [\"GF;Be Vietnam Pro-500\"],\n          withExternalLayout: true,\n          verticalAlignment: \"top\",\n          __fromCanvasComponent: true,\n          __htmlStructure: '<p style=\"--framer-text-alignment:center;\"><span style=\"--framer-font-family:&quot;Be Vietnam Pro&quot;, serif; --framer-font-style:normal; --framer-font-weight:500; --font-selector:R0Y7QmUgVmlldG5hbSBQcm8tNTAw; --framer-text-color:var(--extracted-1w3ko1f);\">{{ text-placeholder }}</span></p>',\n          htmlFromDesign: '<p style=\"--framer-text-alignment:center;\"><span style=\"--framer-font-family:&quot;Be Vietnam Pro&quot;, serif; --framer-font-style:normal; --framer-font-weight:500; --font-selector:R0Y7QmUgVmlldG5hbSBQcm8tNTAw; --framer-text-color:var(--extracted-1w3ko1f);\">\\xa9 2022 VERSR, Inc. All Rights reserved</span></p>',\n          variants: {\n            C0jWRpcE5: {\n              \"--extracted-1w3ko1f\": \"rgb(255, 255, 255)\"\n            },\n            V41pgHaRL: {\n              \"--extracted-hl0iuy\": \"rgb(255, 255, 255)\"\n            }\n          },\n          ...addPropertyOverrides({\n            C0jWRpcE5: {\n              fonts: [\"GF;Be Vietnam Pro-500\"],\n              __htmlStructure: '<p style=\"--framer-text-alignment:center;\"><span style=\"--framer-font-family:&quot;Be Vietnam Pro&quot;, serif; --framer-font-style:normal; --framer-font-weight:500; --font-selector:R0Y7QmUgVmlldG5hbSBQcm8tNTAw; --framer-text-color:var(--extracted-1w3ko1f);\">{{ text-placeholder }}</span></p>',\n              htmlFromDesign: '<p style=\"--framer-text-alignment:center;\"><span style=\"--framer-font-family:&quot;Be Vietnam Pro&quot;, serif; --framer-font-style:normal; --framer-font-weight:500; --font-selector:R0Y7QmUgVmlldG5hbSBQcm8tNTAw; --framer-text-color:var(--extracted-1w3ko1f);\">\\xa9 2022 VERSR, Inc. All Rights reserved</span></p>',\n              preload: []\n            },\n            V41pgHaRL: {\n              fonts: [\"GF;Be Vietnam Pro-500\"],\n              __htmlStructure: '<p style=\"--framer-line-height:1.4em; --framer-text-alignment:center;\"><a href=\"data:framer/page-link,augiA20Il\"><span style=\"--framer-font-family:&quot;Be Vietnam Pro&quot;, serif; --framer-font-style:normal; --framer-font-weight:500; --font-selector:R0Y7QmUgVmlldG5hbSBQcm8tNTAw; --framer-text-color:var(--extracted-hl0iuy);\">{{ text-placeholder }}</span></a></p>',\n              htmlFromDesign: '<p style=\"--framer-line-height:1.4em; --framer-text-alignment:center;\"><a href=\"data:framer/page-link,augiA20Il\"><span style=\"--framer-font-family:&quot;Be Vietnam Pro&quot;, serif; --framer-font-style:normal; --framer-font-weight:500; --font-selector:R0Y7QmUgVmlldG5hbSBQcm8tNTAw; --framer-text-color:var(--extracted-hl0iuy);\">\\xa9 2022 VERSR, Inc. All Rights reserved</span></a></p>',\n              preload: [\"augiA20Il\"]\n            }\n          }, baseVariant, gestureVariant)\n        })\n      })\n    })\n  });\n});\nconst css = ['.framer-Gadow [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none;}', \"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\", \".framer-Gadow * { box-sizing: border-box; }\", \".framer-Gadow .framer-1kw03xy { position: relative; overflow: visible; width: 1200px; height: min-content; }\", \".framer-Gadow .framer-clod69 { position: relative; overflow: hidden; width: 1px; height: auto; flex: 1 0 0px; white-space: pre-wrap; word-wrap: break-word; word-break: break-word; }\", \".framer-Gadow.framer-v-1twyyrq .framer-1kw03xy { width: 810px; height: min-content; }\", \".framer-Gadow.framer-v-1twyyrq .framer-clod69 { width: 1px; height: auto; right: auto; bottom: auto; left: auto; top: auto; flex: 1 0 0px; align-self: auto; white-space: pre-wrap; word-wrap: break-word; word-break: break-word; aspect-ratio: unset; }\", \".framer-Gadow.framer-v-1q1ij28 .framer-1kw03xy { width: 390px; height: min-content; }\", \".framer-Gadow.framer-v-1q1ij28 .framer-clod69 { width: 100%; height: auto; right: auto; bottom: auto; left: auto; top: auto; flex: none; align-self: auto; white-space: pre-wrap; word-wrap: break-word; word-break: break-word; aspect-ratio: unset; }\"];\n/**\n* This is a generated Framer component.\n* @framerIntrinsicHeight 60\n* @framerIntrinsicWidth 1200\n* @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"C0jWRpcE5\":{\"layout\":[\"fixed\",\"auto\"]},\"V41pgHaRL\":{\"layout\":[\"fixed\",\"auto\"]}}}\n*/\n\nconst FramerOsWJDxRnp = withCSS(Component, css);\nexport default FramerOsWJDxRnp;\nFramerOsWJDxRnp.displayName = \"Footer Social\";\nFramerOsWJDxRnp.defaultProps = {\n  width: 1200,\n  height: 60\n};\naddPropertyControls(FramerOsWJDxRnp, {\n  variant: {\n    type: ControlType.Enum,\n    title: \"Variant\",\n    options: [\"yIsIPtz6b\", \"C0jWRpcE5\", \"V41pgHaRL\"],\n    optionTitles: [\"Desktop\", \"Tablet\", \"Phone\"]\n  }\n});\naddFonts(FramerOsWJDxRnp, [{\n  url: \"https://fonts.gstatic.com/s/bevietnampro/v10/QdVMSTAyLFyeg_IDWvOJmVES_HTEJl8yT7wrcwap.ttf\",\n  family: \"Be Vietnam Pro\",\n  style: \"normal\",\n  weight: \"500\",\n  moduleAsset: {\n    url: \"https://fonts.gstatic.com/s/bevietnampro/v10/QdVMSTAyLFyeg_IDWvOJmVES_HTEJl8yT7wrcwap.ttf\",\n    localModuleIdentifier: \"local-module:canvasComponent/OsWJDxRnp:default\"\n  }\n}]);\nexport const __FramerMetadata__ = {\n  \"exports\": {\n    \"Props\": {\n      \"type\": \"tsType\",\n      \"annotations\": {\n        \"framerContractVersion\": \"1\"\n      }\n    },\n    \"default\": {\n      \"type\": \"reactComponent\",\n      \"name\": \"FramerOsWJDxRnp\",\n      \"slots\": [],\n      \"annotations\": {\n        \"framerIntrinsicWidth\": \"1200\",\n        \"framerContractVersion\": \"1\",\n        \"framerIntrinsicHeight\": \"60\",\n        \"framerCanvasComponentVariantDetails\": \"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"C0jWRpcE5\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"V41pgHaRL\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\"\n      }\n    },\n    \"__FramerMetadata__\": {\n      \"type\": \"variable\"\n    }\n  }\n}; //# sourceMappingURL=./OsWJDxRnp.map", "import { MotionValue } from \"framer\"; // Basic MotionValue check\n\nexport const isMotionValue = v => v instanceof MotionValue;\nexport const __FramerMetadata__ = {\n  \"exports\": {\n    \"isMotionValue\": {\n      \"type\": \"variable\",\n      \"annotations\": {\n        \"framerContractVersion\": \"1\"\n      }\n    },\n    \"__FramerMetadata__\": {\n      \"type\": \"variable\"\n    }\n  }\n}; //# sourceMappingURL=./isMotionValue.map", "import{useCallback,useEffect,useRef}from\"react\";import{motionValue,animate,RenderTarget}from\"framer\";import{isMotionValue}from\"https://framerusercontent.com/modules/3mKFSGQqKHV82uOV1eBc/TbXI1XaZFNevVKcgIt7G/isMotionValue.js\";import{useConstant}from\"https://framerusercontent.com/modules/ExNgrA7EJTKUPpH6vIlN/eiOrSJ2Ab5M9jPCvVwUz/useConstant.js\";export function useAutoMotionValue(inputValue,options){// Put options on a local ref\n// Might wanna just memo instead but it works for now\nconst optionsRef=useRef(options);const animation=useRef();const didInitialMount=useRef(false);const isOnCanvas=RenderTarget.current()===RenderTarget.canvas;// in-progress - trying to figure out effect hooks\nconst onChangeDeps=(options===null||options===void 0?void 0:options.onChangeDeps)?options.onChangeDeps:[];// Memoize the onChange handler\nconst onChange=useCallback(options===null||options===void 0?void 0:options.onChange,[...onChangeDeps,]);// Optionally scale the value from props\nconst transformer=useCallback(value=>{var ref;return((ref=optionsRef.current)===null||ref===void 0?void 0:ref.transform)?optionsRef.current.transform(value):value;},[]);// Create new MotionValue from inputValue\nconst value1=useConstant(()=>isMotionValue(inputValue)?inputValue:motionValue(transformer(inputValue)));// Setting value from prop change\nuseEffect(()=>{if(!isMotionValue(inputValue)&&didInitialMount.current){var ref,ref1;const newValue=transformer(inputValue);(ref=animation.current)===null||ref===void 0?void 0:ref.stop();// Call change callback\nif(onChange)onChange(newValue,value1);// Trigger animation to new value\nif(((ref1=optionsRef.current)===null||ref1===void 0?void 0:ref1.animate)&&!isOnCanvas){var ref2;// @ts-ignore\nanimation.current=animate(value1,newValue,(ref2=optionsRef.current)===null||ref2===void 0?void 0:ref2.transition);}else{value1.set(newValue);}}didInitialMount.current=true;},[inputValue,...onChangeDeps]);return value1;}\nexport const __FramerMetadata__ = {\"exports\":{\"useAutoMotionValue\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./useAutoMotionValue.map", "var _global = typeof globalThis !== \"undefined\" ? globalThis : typeof self !== \"undefined\" ? self : global;\n\nvar exports = {};\ntypeof navigator !== \"undefined\" && function (root, factory) {\n  if (exports) {\n    exports = factory(root);\n  } else {\n    root.lottie = factory(root);\n    root.bodymovin = root.lottie;\n  }\n}(window || {}, function (window) {\n  /* global locationHref:writable, animationManager, subframeEnabled:writable, defaultCurveSegments:writable, roundValues,\r\n  expressionsPlugin:writable, PropertyFactory, ShapePropertyFactory, Matrix */\n\n  /* exported locationHref, subframeEnabled, expressionsPlugin */\n  'use strict';\n  /* exported svgNS, locationHref, initialDefaultFrame */\n\n  var svgNS = \"http://www.w3.org/2000/svg\";\n  var locationHref = \"\";\n  var initialDefaultFrame = -999999;\n  /* global createSizedArray */\n\n  /* exported subframeEnabled, expressionsPlugin, isSafari, cachedColors, bmPow, bmSqrt, bmFloor, bmMax, bmMin, ProjectInterface,\r\n  defaultCurveSegments, degToRads, roundCorner, bmRnd, styleDiv, BMEnterFrameEvent, BMCompleteEvent, BMCompleteLoopEvent,\r\n  BMSegmentStartEvent, BMDestroyEvent, BMRenderFrameErrorEvent, BMConfigErrorEvent, BMAnimationConfigErrorEvent, createElementID,\r\n  addSaturationToRGB, addBrightnessToRGB, addHueToRGB, rgbToHex */\n\n  var subframeEnabled = true;\n  var expressionsPlugin;\n  var isSafari = /^((?!chrome|android).)*safari/i.test(navigator.userAgent);\n  var cachedColors = {};\n  var bmRnd;\n  var bmPow = Math.pow;\n  var bmSqrt = Math.sqrt;\n  var bmFloor = Math.floor;\n  var bmMax = Math.max;\n  var bmMin = Math.min;\n  var BMMath = {};\n\n  (function () {\n    var propertyNames = [\"abs\", \"acos\", \"acosh\", \"asin\", \"asinh\", \"atan\", \"atanh\", \"atan2\", \"ceil\", \"cbrt\", \"expm1\", \"clz32\", \"cos\", \"cosh\", \"exp\", \"floor\", \"fround\", \"hypot\", \"imul\", \"log\", \"log1p\", \"log2\", \"log10\", \"max\", \"min\", \"pow\", \"random\", \"round\", \"sign\", \"sin\", \"sinh\", \"sqrt\", \"tan\", \"tanh\", \"trunc\", \"E\", \"LN10\", \"LN2\", \"LOG10E\", \"LOG2E\", \"PI\", \"SQRT1_2\", \"SQRT2\"];\n    var i;\n    var len = propertyNames.length;\n\n    for (i = 0; i < len; i += 1) {\n      BMMath[propertyNames[i]] = Math[propertyNames[i]];\n    }\n  })();\n\n  function ProjectInterface() {\n    return {};\n  }\n\n  BMMath.random = Math.random;\n\n  BMMath.abs = function (val) {\n    var tOfVal = typeof val;\n\n    if (tOfVal === \"object\" && val.length) {\n      var absArr = createSizedArray(val.length);\n      var i;\n      var len = val.length;\n\n      for (i = 0; i < len; i += 1) {\n        absArr[i] = Math.abs(val[i]);\n      }\n\n      return absArr;\n    }\n\n    return Math.abs(val);\n  };\n\n  var defaultCurveSegments = 150;\n  var degToRads = Math.PI / 180;\n  var roundCorner = 0.5519;\n\n  function roundValues(flag) {\n    if (flag) {\n      bmRnd = Math.round;\n    } else {\n      bmRnd = function (val) {\n        return val;\n      };\n    }\n  }\n\n  roundValues(false);\n\n  function styleDiv(element) {\n    element.style.position = \"absolute\";\n    element.style.top = 0;\n    element.style.left = 0;\n    element.style.display = \"block\";\n    element.style.transformOrigin = \"0 0\";\n    element.style.webkitTransformOrigin = \"0 0\";\n    element.style.backfaceVisibility = \"visible\";\n    element.style.webkitBackfaceVisibility = \"visible\";\n    element.style.transformStyle = \"preserve-3d\";\n    element.style.webkitTransformStyle = \"preserve-3d\";\n    element.style.mozTransformStyle = \"preserve-3d\";\n  }\n\n  function BMEnterFrameEvent(type, currentTime, totalTime, frameMultiplier) {\n    (this || _global).type = type;\n    (this || _global).currentTime = currentTime;\n    (this || _global).totalTime = totalTime;\n    (this || _global).direction = frameMultiplier < 0 ? -1 : 1;\n  }\n\n  function BMCompleteEvent(type, frameMultiplier) {\n    (this || _global).type = type;\n    (this || _global).direction = frameMultiplier < 0 ? -1 : 1;\n  }\n\n  function BMCompleteLoopEvent(type, totalLoops, currentLoop, frameMultiplier) {\n    (this || _global).type = type;\n    (this || _global).currentLoop = currentLoop;\n    (this || _global).totalLoops = totalLoops;\n    (this || _global).direction = frameMultiplier < 0 ? -1 : 1;\n  }\n\n  function BMSegmentStartEvent(type, firstFrame, totalFrames) {\n    (this || _global).type = type;\n    (this || _global).firstFrame = firstFrame;\n    (this || _global).totalFrames = totalFrames;\n  }\n\n  function BMDestroyEvent(type, target) {\n    (this || _global).type = type;\n    (this || _global).target = target;\n  }\n\n  function BMRenderFrameErrorEvent(nativeError, currentTime) {\n    (this || _global).type = \"renderFrameError\";\n    (this || _global).nativeError = nativeError;\n    (this || _global).currentTime = currentTime;\n  }\n\n  function BMConfigErrorEvent(nativeError) {\n    (this || _global).type = \"configError\";\n    (this || _global).nativeError = nativeError;\n  }\n\n  function BMAnimationConfigErrorEvent(type, nativeError) {\n    (this || _global).type = type;\n    (this || _global).nativeError = nativeError;\n  }\n\n  var createElementID = function () {\n    var _count = 0;\n    return function createID() {\n      _count += 1;\n      return \"__lottie_element_\" + _count;\n    };\n  }();\n\n  function HSVtoRGB(h, s, v) {\n    var r;\n    var g;\n    var b;\n    var i;\n    var f;\n    var p;\n    var q;\n    var t;\n    i = Math.floor(h * 6);\n    f = h * 6 - i;\n    p = v * (1 - s);\n    q = v * (1 - f * s);\n    t = v * (1 - (1 - f) * s);\n\n    switch (i % 6) {\n      case 0:\n        r = v;\n        g = t;\n        b = p;\n        break;\n\n      case 1:\n        r = q;\n        g = v;\n        b = p;\n        break;\n\n      case 2:\n        r = p;\n        g = v;\n        b = t;\n        break;\n\n      case 3:\n        r = p;\n        g = q;\n        b = v;\n        break;\n\n      case 4:\n        r = t;\n        g = p;\n        b = v;\n        break;\n\n      case 5:\n        r = v;\n        g = p;\n        b = q;\n        break;\n\n      default:\n        break;\n    }\n\n    return [r, g, b];\n  }\n\n  function RGBtoHSV(r, g, b) {\n    var max = Math.max(r, g, b);\n    var min = Math.min(r, g, b);\n    var d = max - min;\n    var h;\n    var s = max === 0 ? 0 : d / max;\n    var v = max / 255;\n\n    switch (max) {\n      case min:\n        h = 0;\n        break;\n\n      case r:\n        h = g - b + d * (g < b ? 6 : 0);\n        h /= 6 * d;\n        break;\n\n      case g:\n        h = b - r + d * 2;\n        h /= 6 * d;\n        break;\n\n      case b:\n        h = r - g + d * 4;\n        h /= 6 * d;\n        break;\n\n      default:\n        break;\n    }\n\n    return [h, s, v];\n  }\n\n  function addSaturationToRGB(color, offset) {\n    var hsv = RGBtoHSV(color[0] * 255, color[1] * 255, color[2] * 255);\n    hsv[1] += offset;\n\n    if (hsv[1] > 1) {\n      hsv[1] = 1;\n    } else if (hsv[1] <= 0) {\n      hsv[1] = 0;\n    }\n\n    return HSVtoRGB(hsv[0], hsv[1], hsv[2]);\n  }\n\n  function addBrightnessToRGB(color, offset) {\n    var hsv = RGBtoHSV(color[0] * 255, color[1] * 255, color[2] * 255);\n    hsv[2] += offset;\n\n    if (hsv[2] > 1) {\n      hsv[2] = 1;\n    } else if (hsv[2] < 0) {\n      hsv[2] = 0;\n    }\n\n    return HSVtoRGB(hsv[0], hsv[1], hsv[2]);\n  }\n\n  function addHueToRGB(color, offset) {\n    var hsv = RGBtoHSV(color[0] * 255, color[1] * 255, color[2] * 255);\n    hsv[0] += offset / 360;\n\n    if (hsv[0] > 1) {\n      hsv[0] -= 1;\n    } else if (hsv[0] < 0) {\n      hsv[0] += 1;\n    }\n\n    return HSVtoRGB(hsv[0], hsv[1], hsv[2]);\n  }\n\n  var rgbToHex = function () {\n    var colorMap = [];\n    var i;\n    var hex;\n\n    for (i = 0; i < 256; i += 1) {\n      hex = i.toString(16);\n      colorMap[i] = hex.length === 1 ? \"0\" + hex : hex;\n    }\n\n    return function (r, g, b) {\n      if (r < 0) {\n        r = 0;\n      }\n\n      if (g < 0) {\n        g = 0;\n      }\n\n      if (b < 0) {\n        b = 0;\n      }\n\n      return \"#\" + colorMap[r] + colorMap[g] + colorMap[b];\n    };\n  }();\n\n  function BaseEvent() {}\n\n  BaseEvent.prototype = {\n    triggerEvent: function (eventName, args) {\n      if ((this || _global)._cbs[eventName]) {\n        var len = (this || _global)._cbs[eventName].length;\n\n        for (var i = 0; i < len; i += 1) {\n          (this || _global)._cbs[eventName][i](args);\n        }\n      }\n    },\n    addEventListener: function (eventName, callback) {\n      if (!(this || _global)._cbs[eventName]) {\n        (this || _global)._cbs[eventName] = [];\n      }\n\n      (this || _global)._cbs[eventName].push(callback);\n\n      return function () {\n        this.removeEventListener(eventName, callback);\n      }.bind(this || _global);\n    },\n    removeEventListener: function (eventName, callback) {\n      if (!callback) {\n        (this || _global)._cbs[eventName] = null;\n      } else if ((this || _global)._cbs[eventName]) {\n        var i = 0;\n        var len = (this || _global)._cbs[eventName].length;\n\n        while (i < len) {\n          if ((this || _global)._cbs[eventName][i] === callback) {\n            (this || _global)._cbs[eventName].splice(i, 1);\n\n            i -= 1;\n            len -= 1;\n          }\n\n          i += 1;\n        }\n\n        if (!(this || _global)._cbs[eventName].length) {\n          (this || _global)._cbs[eventName] = null;\n        }\n      }\n    }\n  };\n  /* exported createTypedArray, createSizedArray */\n\n  var createTypedArray = function () {\n    function createRegularArray(type, len) {\n      var i = 0;\n      var arr = [];\n      var value;\n\n      switch (type) {\n        case \"int16\":\n        case \"uint8c\":\n          value = 1;\n          break;\n\n        default:\n          value = 1.1;\n          break;\n      }\n\n      for (i = 0; i < len; i += 1) {\n        arr.push(value);\n      }\n\n      return arr;\n    }\n\n    function createTypedArrayFactory(type, len) {\n      if (type === \"float32\") {\n        return new Float32Array(len);\n      }\n\n      if (type === \"int16\") {\n        return new Int16Array(len);\n      }\n\n      if (type === \"uint8c\") {\n        return new Uint8ClampedArray(len);\n      }\n\n      return createRegularArray(type, len);\n    }\n\n    if (typeof Uint8ClampedArray === \"function\" && typeof Float32Array === \"function\") {\n      return createTypedArrayFactory;\n    }\n\n    return createRegularArray;\n  }();\n\n  function createSizedArray(len) {\n    return Array.apply(null, {\n      length: len\n    });\n  }\n  /* global svgNS */\n\n  /* exported createNS */\n\n\n  function createNS(type) {\n    // return {appendChild:function(){},setAttribute:function(){},style:{}}\n    return document.createElementNS(svgNS, type);\n  }\n  /* exported createTag */\n\n\n  function createTag(type) {\n    // return {appendChild:function(){},setAttribute:function(){},style:{}}\n    return document.createElement(type);\n  }\n\n  function DynamicPropertyContainer() {}\n\n  DynamicPropertyContainer.prototype = {\n    addDynamicProperty: function (prop) {\n      if ((this || _global).dynamicProperties.indexOf(prop) === -1) {\n        (this || _global).dynamicProperties.push(prop);\n\n        (this || _global).container.addDynamicProperty(this || _global);\n\n        (this || _global)._isAnimated = true;\n      }\n    },\n    iterateDynamicProperties: function () {\n      (this || _global)._mdf = false;\n      var i;\n      var len = (this || _global).dynamicProperties.length;\n\n      for (i = 0; i < len; i += 1) {\n        (this || _global).dynamicProperties[i].getValue();\n\n        if ((this || _global).dynamicProperties[i]._mdf) {\n          (this || _global)._mdf = true;\n        }\n      }\n    },\n    initDynamicPropertyContainer: function (container) {\n      (this || _global).container = container;\n      (this || _global).dynamicProperties = [];\n      (this || _global)._mdf = false;\n      (this || _global)._isAnimated = false;\n    }\n  };\n  /* exported getBlendMode */\n\n  var getBlendMode = function () {\n    var blendModeEnums = {\n      0: \"source-over\",\n      1: \"multiply\",\n      2: \"screen\",\n      3: \"overlay\",\n      4: \"darken\",\n      5: \"lighten\",\n      6: \"color-dodge\",\n      7: \"color-burn\",\n      8: \"hard-light\",\n      9: \"soft-light\",\n      10: \"difference\",\n      11: \"exclusion\",\n      12: \"hue\",\n      13: \"saturation\",\n      14: \"color\",\n      15: \"luminosity\"\n    };\n    return function (mode) {\n      return blendModeEnums[mode] || \"\";\n    };\n  }();\n  /* global createTypedArray */\n\n  /*!\r\n   Transformation Matrix v2.0\r\n   (c) Epistemex 2014-2015\r\n   www.epistemex.com\r\n   By Ken Fyrstenberg\r\n   Contributions by leeoniya.\r\n   License: MIT, header required.\r\n   */\n\n  /**\r\n   * 2D transformation matrix object initialized with identity matrix.\r\n   *\r\n   * The matrix can synchronize a canvas context by supplying the context\r\n   * as an argument, or later apply current absolute transform to an\r\n   * existing context.\r\n   *\r\n   * All values are handled as floating point values.\r\n   *\r\n   * @param {CanvasRenderingContext2D} [context] - Optional context to sync with Matrix\r\n   * @prop {number} a - scale x\r\n   * @prop {number} b - shear y\r\n   * @prop {number} c - shear x\r\n   * @prop {number} d - scale y\r\n   * @prop {number} e - translate x\r\n   * @prop {number} f - translate y\r\n   * @prop {CanvasRenderingContext2D|null} [context=null] - set or get current canvas context\r\n   * @constructor\r\n   */\n\n\n  var Matrix = function () {\n    var _cos = Math.cos;\n    var _sin = Math.sin;\n    var _tan = Math.tan;\n    var _rnd = Math.round;\n\n    function reset() {\n      (this || _global).props[0] = 1;\n      (this || _global).props[1] = 0;\n      (this || _global).props[2] = 0;\n      (this || _global).props[3] = 0;\n      (this || _global).props[4] = 0;\n      (this || _global).props[5] = 1;\n      (this || _global).props[6] = 0;\n      (this || _global).props[7] = 0;\n      (this || _global).props[8] = 0;\n      (this || _global).props[9] = 0;\n      (this || _global).props[10] = 1;\n      (this || _global).props[11] = 0;\n      (this || _global).props[12] = 0;\n      (this || _global).props[13] = 0;\n      (this || _global).props[14] = 0;\n      (this || _global).props[15] = 1;\n      return this || _global;\n    }\n\n    function rotate(angle) {\n      if (angle === 0) {\n        return this || _global;\n      }\n\n      var mCos = _cos(angle);\n\n      var mSin = _sin(angle);\n\n      return this._t(mCos, -mSin, 0, 0, mSin, mCos, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);\n    }\n\n    function rotateX(angle) {\n      if (angle === 0) {\n        return this || _global;\n      }\n\n      var mCos = _cos(angle);\n\n      var mSin = _sin(angle);\n\n      return this._t(1, 0, 0, 0, 0, mCos, -mSin, 0, 0, mSin, mCos, 0, 0, 0, 0, 1);\n    }\n\n    function rotateY(angle) {\n      if (angle === 0) {\n        return this || _global;\n      }\n\n      var mCos = _cos(angle);\n\n      var mSin = _sin(angle);\n\n      return this._t(mCos, 0, mSin, 0, 0, 1, 0, 0, -mSin, 0, mCos, 0, 0, 0, 0, 1);\n    }\n\n    function rotateZ(angle) {\n      if (angle === 0) {\n        return this || _global;\n      }\n\n      var mCos = _cos(angle);\n\n      var mSin = _sin(angle);\n\n      return this._t(mCos, -mSin, 0, 0, mSin, mCos, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);\n    }\n\n    function shear(sx, sy) {\n      return this._t(1, sy, sx, 1, 0, 0);\n    }\n\n    function skew(ax, ay) {\n      return this.shear(_tan(ax), _tan(ay));\n    }\n\n    function skewFromAxis(ax, angle) {\n      var mCos = _cos(angle);\n\n      var mSin = _sin(angle);\n\n      return this._t(mCos, mSin, 0, 0, -mSin, mCos, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1)._t(1, 0, 0, 0, _tan(ax), 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1)._t(mCos, -mSin, 0, 0, mSin, mCos, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); // return this._t(mCos, mSin, -mSin, mCos, 0, 0)._t(1, 0, _tan(ax), 1, 0, 0)._t(mCos, -mSin, mSin, mCos, 0, 0);\n    }\n\n    function scale(sx, sy, sz) {\n      if (!sz && sz !== 0) {\n        sz = 1;\n      }\n\n      if (sx === 1 && sy === 1 && sz === 1) {\n        return this || _global;\n      }\n\n      return this._t(sx, 0, 0, 0, 0, sy, 0, 0, 0, 0, sz, 0, 0, 0, 0, 1);\n    }\n\n    function setTransform(a, b, c, d, e, f, g, h, i, j, k, l, m, n, o, p) {\n      (this || _global).props[0] = a;\n      (this || _global).props[1] = b;\n      (this || _global).props[2] = c;\n      (this || _global).props[3] = d;\n      (this || _global).props[4] = e;\n      (this || _global).props[5] = f;\n      (this || _global).props[6] = g;\n      (this || _global).props[7] = h;\n      (this || _global).props[8] = i;\n      (this || _global).props[9] = j;\n      (this || _global).props[10] = k;\n      (this || _global).props[11] = l;\n      (this || _global).props[12] = m;\n      (this || _global).props[13] = n;\n      (this || _global).props[14] = o;\n      (this || _global).props[15] = p;\n      return this || _global;\n    }\n\n    function translate(tx, ty, tz) {\n      tz = tz || 0;\n\n      if (tx !== 0 || ty !== 0 || tz !== 0) {\n        return this._t(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, tx, ty, tz, 1);\n      }\n\n      return this || _global;\n    }\n\n    function transform(a2, b2, c2, d2, e2, f2, g2, h2, i2, j2, k2, l2, m2, n2, o2, p2) {\n      var _p = (this || _global).props;\n\n      if (a2 === 1 && b2 === 0 && c2 === 0 && d2 === 0 && e2 === 0 && f2 === 1 && g2 === 0 && h2 === 0 && i2 === 0 && j2 === 0 && k2 === 1 && l2 === 0) {\n        // NOTE: commenting this condition because TurboFan deoptimizes code when present\n        // if(m2 !== 0 || n2 !== 0 || o2 !== 0){\n        _p[12] = _p[12] * a2 + _p[15] * m2;\n        _p[13] = _p[13] * f2 + _p[15] * n2;\n        _p[14] = _p[14] * k2 + _p[15] * o2;\n        _p[15] *= p2; // }\n\n        (this || _global)._identityCalculated = false;\n        return this || _global;\n      }\n\n      var a1 = _p[0];\n      var b1 = _p[1];\n      var c1 = _p[2];\n      var d1 = _p[3];\n      var e1 = _p[4];\n      var f1 = _p[5];\n      var g1 = _p[6];\n      var h1 = _p[7];\n      var i1 = _p[8];\n      var j1 = _p[9];\n      var k1 = _p[10];\n      var l1 = _p[11];\n      var m1 = _p[12];\n      var n1 = _p[13];\n      var o1 = _p[14];\n      var p1 = _p[15];\n      /* matrix order (canvas compatible):\r\n           * ace\r\n           * bdf\r\n           * 001\r\n           */\n\n      _p[0] = a1 * a2 + b1 * e2 + c1 * i2 + d1 * m2;\n      _p[1] = a1 * b2 + b1 * f2 + c1 * j2 + d1 * n2;\n      _p[2] = a1 * c2 + b1 * g2 + c1 * k2 + d1 * o2;\n      _p[3] = a1 * d2 + b1 * h2 + c1 * l2 + d1 * p2;\n      _p[4] = e1 * a2 + f1 * e2 + g1 * i2 + h1 * m2;\n      _p[5] = e1 * b2 + f1 * f2 + g1 * j2 + h1 * n2;\n      _p[6] = e1 * c2 + f1 * g2 + g1 * k2 + h1 * o2;\n      _p[7] = e1 * d2 + f1 * h2 + g1 * l2 + h1 * p2;\n      _p[8] = i1 * a2 + j1 * e2 + k1 * i2 + l1 * m2;\n      _p[9] = i1 * b2 + j1 * f2 + k1 * j2 + l1 * n2;\n      _p[10] = i1 * c2 + j1 * g2 + k1 * k2 + l1 * o2;\n      _p[11] = i1 * d2 + j1 * h2 + k1 * l2 + l1 * p2;\n      _p[12] = m1 * a2 + n1 * e2 + o1 * i2 + p1 * m2;\n      _p[13] = m1 * b2 + n1 * f2 + o1 * j2 + p1 * n2;\n      _p[14] = m1 * c2 + n1 * g2 + o1 * k2 + p1 * o2;\n      _p[15] = m1 * d2 + n1 * h2 + o1 * l2 + p1 * p2;\n      (this || _global)._identityCalculated = false;\n      return this || _global;\n    }\n\n    function isIdentity() {\n      if (!(this || _global)._identityCalculated) {\n        (this || _global)._identity = !((this || _global).props[0] !== 1 || (this || _global).props[1] !== 0 || (this || _global).props[2] !== 0 || (this || _global).props[3] !== 0 || (this || _global).props[4] !== 0 || (this || _global).props[5] !== 1 || (this || _global).props[6] !== 0 || (this || _global).props[7] !== 0 || (this || _global).props[8] !== 0 || (this || _global).props[9] !== 0 || (this || _global).props[10] !== 1 || (this || _global).props[11] !== 0 || (this || _global).props[12] !== 0 || (this || _global).props[13] !== 0 || (this || _global).props[14] !== 0 || (this || _global).props[15] !== 1);\n        (this || _global)._identityCalculated = true;\n      }\n\n      return (this || _global)._identity;\n    }\n\n    function equals(matr) {\n      var i = 0;\n\n      while (i < 16) {\n        if (matr.props[i] !== (this || _global).props[i]) {\n          return false;\n        }\n\n        i += 1;\n      }\n\n      return true;\n    }\n\n    function clone(matr) {\n      var i;\n\n      for (i = 0; i < 16; i += 1) {\n        matr.props[i] = (this || _global).props[i];\n      }\n\n      return matr;\n    }\n\n    function cloneFromProps(props) {\n      var i;\n\n      for (i = 0; i < 16; i += 1) {\n        (this || _global).props[i] = props[i];\n      }\n    }\n\n    function applyToPoint(x, y, z) {\n      return {\n        x: x * (this || _global).props[0] + y * (this || _global).props[4] + z * (this || _global).props[8] + (this || _global).props[12],\n        y: x * (this || _global).props[1] + y * (this || _global).props[5] + z * (this || _global).props[9] + (this || _global).props[13],\n        z: x * (this || _global).props[2] + y * (this || _global).props[6] + z * (this || _global).props[10] + (this || _global).props[14]\n      };\n      /* return {\r\n           x: x * me.a + y * me.c + me.e,\r\n           y: x * me.b + y * me.d + me.f\r\n           }; */\n    }\n\n    function applyToX(x, y, z) {\n      return x * (this || _global).props[0] + y * (this || _global).props[4] + z * (this || _global).props[8] + (this || _global).props[12];\n    }\n\n    function applyToY(x, y, z) {\n      return x * (this || _global).props[1] + y * (this || _global).props[5] + z * (this || _global).props[9] + (this || _global).props[13];\n    }\n\n    function applyToZ(x, y, z) {\n      return x * (this || _global).props[2] + y * (this || _global).props[6] + z * (this || _global).props[10] + (this || _global).props[14];\n    }\n\n    function getInverseMatrix() {\n      var determinant = (this || _global).props[0] * (this || _global).props[5] - (this || _global).props[1] * (this || _global).props[4];\n      var a = (this || _global).props[5] / determinant;\n      var b = -(this || _global).props[1] / determinant;\n      var c = -(this || _global).props[4] / determinant;\n      var d = (this || _global).props[0] / determinant;\n      var e = ((this || _global).props[4] * (this || _global).props[13] - (this || _global).props[5] * (this || _global).props[12]) / determinant;\n      var f = -((this || _global).props[0] * (this || _global).props[13] - (this || _global).props[1] * (this || _global).props[12]) / determinant;\n      var inverseMatrix = new Matrix();\n      inverseMatrix.props[0] = a;\n      inverseMatrix.props[1] = b;\n      inverseMatrix.props[4] = c;\n      inverseMatrix.props[5] = d;\n      inverseMatrix.props[12] = e;\n      inverseMatrix.props[13] = f;\n      return inverseMatrix;\n    }\n\n    function inversePoint(pt) {\n      var inverseMatrix = this.getInverseMatrix();\n      return inverseMatrix.applyToPointArray(pt[0], pt[1], pt[2] || 0);\n    }\n\n    function inversePoints(pts) {\n      var i;\n      var len = pts.length;\n      var retPts = [];\n\n      for (i = 0; i < len; i += 1) {\n        retPts[i] = inversePoint(pts[i]);\n      }\n\n      return retPts;\n    }\n\n    function applyToTriplePoints(pt1, pt2, pt3) {\n      var arr = createTypedArray(\"float32\", 6);\n\n      if (this.isIdentity()) {\n        arr[0] = pt1[0];\n        arr[1] = pt1[1];\n        arr[2] = pt2[0];\n        arr[3] = pt2[1];\n        arr[4] = pt3[0];\n        arr[5] = pt3[1];\n      } else {\n        var p0 = (this || _global).props[0];\n        var p1 = (this || _global).props[1];\n        var p4 = (this || _global).props[4];\n        var p5 = (this || _global).props[5];\n        var p12 = (this || _global).props[12];\n        var p13 = (this || _global).props[13];\n        arr[0] = pt1[0] * p0 + pt1[1] * p4 + p12;\n        arr[1] = pt1[0] * p1 + pt1[1] * p5 + p13;\n        arr[2] = pt2[0] * p0 + pt2[1] * p4 + p12;\n        arr[3] = pt2[0] * p1 + pt2[1] * p5 + p13;\n        arr[4] = pt3[0] * p0 + pt3[1] * p4 + p12;\n        arr[5] = pt3[0] * p1 + pt3[1] * p5 + p13;\n      }\n\n      return arr;\n    }\n\n    function applyToPointArray(x, y, z) {\n      var arr;\n\n      if (this.isIdentity()) {\n        arr = [x, y, z];\n      } else {\n        arr = [x * (this || _global).props[0] + y * (this || _global).props[4] + z * (this || _global).props[8] + (this || _global).props[12], x * (this || _global).props[1] + y * (this || _global).props[5] + z * (this || _global).props[9] + (this || _global).props[13], x * (this || _global).props[2] + y * (this || _global).props[6] + z * (this || _global).props[10] + (this || _global).props[14]];\n      }\n\n      return arr;\n    }\n\n    function applyToPointStringified(x, y) {\n      if (this.isIdentity()) {\n        return x + \",\" + y;\n      }\n\n      var _p = (this || _global).props;\n      return Math.round((x * _p[0] + y * _p[4] + _p[12]) * 100) / 100 + \",\" + Math.round((x * _p[1] + y * _p[5] + _p[13]) * 100) / 100;\n    }\n\n    function toCSS() {\n      // Doesn't make much sense to add this optimization. If it is an identity matrix, it's very likely this will get called only once since it won't be keyframed.\n\n      /* if(this.isIdentity()) {\r\n              return '';\r\n          } */\n      var i = 0;\n      var props = (this || _global).props;\n      var cssValue = \"matrix3d(\";\n      var v = 10000;\n\n      while (i < 16) {\n        cssValue += _rnd(props[i] * v) / v;\n        cssValue += i === 15 ? \")\" : \",\";\n        i += 1;\n      }\n\n      return cssValue;\n    }\n\n    function roundMatrixProperty(val) {\n      var v = 10000;\n\n      if (val < 0.000001 && val > 0 || val > -0.000001 && val < 0) {\n        return _rnd(val * v) / v;\n      }\n\n      return val;\n    }\n\n    function to2dCSS() {\n      // Doesn't make much sense to add this optimization. If it is an identity matrix, it's very likely this will get called only once since it won't be keyframed.\n\n      /* if(this.isIdentity()) {\r\n              return '';\r\n          } */\n      var props = (this || _global).props;\n\n      var _a = roundMatrixProperty(props[0]);\n\n      var _b = roundMatrixProperty(props[1]);\n\n      var _c = roundMatrixProperty(props[4]);\n\n      var _d = roundMatrixProperty(props[5]);\n\n      var _e = roundMatrixProperty(props[12]);\n\n      var _f = roundMatrixProperty(props[13]);\n\n      return \"matrix(\" + _a + \",\" + _b + \",\" + _c + \",\" + _d + \",\" + _e + \",\" + _f + \")\";\n    }\n\n    return function () {\n      (this || _global).reset = reset;\n      (this || _global).rotate = rotate;\n      (this || _global).rotateX = rotateX;\n      (this || _global).rotateY = rotateY;\n      (this || _global).rotateZ = rotateZ;\n      (this || _global).skew = skew;\n      (this || _global).skewFromAxis = skewFromAxis;\n      (this || _global).shear = shear;\n      (this || _global).scale = scale;\n      (this || _global).setTransform = setTransform;\n      (this || _global).translate = translate;\n      (this || _global).transform = transform;\n      (this || _global).applyToPoint = applyToPoint;\n      (this || _global).applyToX = applyToX;\n      (this || _global).applyToY = applyToY;\n      (this || _global).applyToZ = applyToZ;\n      (this || _global).applyToPointArray = applyToPointArray;\n      (this || _global).applyToTriplePoints = applyToTriplePoints;\n      (this || _global).applyToPointStringified = applyToPointStringified;\n      (this || _global).toCSS = toCSS;\n      (this || _global).to2dCSS = to2dCSS;\n      (this || _global).clone = clone;\n      (this || _global).cloneFromProps = cloneFromProps;\n      (this || _global).equals = equals;\n      (this || _global).inversePoints = inversePoints;\n      (this || _global).inversePoint = inversePoint;\n      (this || _global).getInverseMatrix = getInverseMatrix;\n      (this || _global)._t = (this || _global).transform;\n      (this || _global).isIdentity = isIdentity;\n      (this || _global)._identity = true;\n      (this || _global)._identityCalculated = false;\n      (this || _global).props = createTypedArray(\"float32\", 16);\n      this.reset();\n    };\n  }();\n  /* eslint-disable */\n\n  /*\r\n   Copyright 2014 David Bau.\r\n  \r\n   Permission is hereby granted, free of charge, to any person obtaining\r\n   a copy of this software and associated documentation files (the\r\n   \"Software\"), to deal in the Software without restriction, including\r\n   without limitation the rights to use, copy, modify, merge, publish,\r\n   distribute, sublicense, and/or sell copies of the Software, and to\r\n   permit persons to whom the Software is furnished to do so, subject to\r\n   the following conditions:\r\n  \r\n   The above copyright notice and this permission notice shall be\r\n   included in all copies or substantial portions of the Software.\r\n  \r\n   THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\r\n   EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\r\n   MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.\r\n   IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY\r\n   CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\r\n   TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE\r\n   SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\r\n  \r\n   */\n\n\n  (function (pool, math) {\n    //\n    // The following constants are related to IEEE 754 limits.\n    //\n    var global = this || _global,\n        width = 256,\n        // each RC4 output is 0 <= x < 256\n    chunks = 6,\n        // at least six RC4 outputs for each double\n    digits = 52,\n        // there are 52 significant digits in a double\n    rngname = \"random\",\n        // rngname: name for Math.random and Math.seedrandom\n    startdenom = math.pow(width, chunks),\n        significance = math.pow(2, digits),\n        overflow = significance * 2,\n        mask = width - 1,\n        nodecrypto; // node.js crypto module, initialized at the bottom.\n    //\n    // seedrandom()\n    // This is the seedrandom function described above.\n    //\n\n    function seedrandom(seed, options, callback) {\n      var key = [];\n      options = options === true ? {\n        entropy: true\n      } : options || {}; // Flatten the seed string or build one from local entropy if needed.\n\n      var shortseed = mixkey(flatten(options.entropy ? [seed, tostring(pool)] : seed === null ? autoseed() : seed, 3), key); // Use the seed to initialize an ARC4 generator.\n\n      var arc4 = new ARC4(key); // This function returns a random double in [0, 1) that contains\n      // randomness in every bit of the mantissa of the IEEE 754 value.\n\n      var prng = function () {\n        var n = arc4.g(chunks),\n            // Start with a numerator n < 2 ^ 48\n        d = startdenom,\n            //   and denominator d = 2 ^ 48.\n        x = 0; //   and no 'extra last byte'.\n\n        while (n < significance) {\n          // Fill up all significant digits by\n          n = (n + x) * width; //   shifting numerator and\n\n          d *= width; //   denominator and generating a\n\n          x = arc4.g(1); //   new least-significant-byte.\n        }\n\n        while (n >= overflow) {\n          // To avoid rounding up, before adding\n          n /= 2; //   last byte, shift everything\n\n          d /= 2; //   right using integer math until\n\n          x >>>= 1; //   we have exactly the desired bits.\n        }\n\n        return (n + x) / d; // Form the number within [0, 1).\n      };\n\n      prng.int32 = function () {\n        return arc4.g(4) | 0;\n      };\n\n      prng.quick = function () {\n        return arc4.g(4) / 4294967296;\n      };\n\n      prng.double = prng; // Mix the randomness into accumulated entropy.\n\n      mixkey(tostring(arc4.S), pool); // Calling convention: what to return as a function of prng, seed, is_math.\n\n      return (options.pass || callback || function (prng, seed, is_math_call, state) {\n        if (state) {\n          // Load the arc4 state from the given state if it has an S array.\n          if (state.S) {\n            copy(state, arc4);\n          } // Only provide the .state method if requested via options.state.\n\n\n          prng.state = function () {\n            return copy(arc4, {});\n          };\n        } // If called as a method of Math (Math.seedrandom()), mutate\n        // Math.random because that is how seedrandom.js has worked since v1.0.\n\n\n        if (is_math_call) {\n          math[rngname] = prng;\n          return seed;\n        } // Otherwise, it is a newer calling convention, so return the\n        // prng directly.\n        else return prng;\n      })(prng, shortseed, \"global\" in options ? options.global : (this || _global) == math, options.state);\n    }\n\n    math[\"seed\" + rngname] = seedrandom; //\n    // ARC4\n    //\n    // An ARC4 implementation.  The constructor takes a key in the form of\n    // an array of at most (width) integers that should be 0 <= x < (width).\n    //\n    // The g(count) method returns a pseudorandom integer that concatenates\n    // the next (count) outputs from ARC4.  Its return value is a number x\n    // that is in the range 0 <= x < (width ^ count).\n    //\n\n    function ARC4(key) {\n      var t,\n          keylen = key.length,\n          me = this || _global,\n          i = 0,\n          j = me.i = me.j = 0,\n          s = me.S = []; // The empty key [] is treated as [0].\n\n      if (!keylen) {\n        key = [keylen++];\n      } // Set up S using the standard key scheduling algorithm.\n\n\n      while (i < width) {\n        s[i] = i++;\n      }\n\n      for (i = 0; i < width; i++) {\n        s[i] = s[j = mask & j + key[i % keylen] + (t = s[i])];\n        s[j] = t;\n      } // The \"g\" method returns the next (count) outputs as one number.\n\n\n      me.g = function (count) {\n        // Using instance members instead of closure state nearly doubles speed.\n        var t,\n            r = 0,\n            i = me.i,\n            j = me.j,\n            s = me.S;\n\n        while (count--) {\n          t = s[i = mask & i + 1];\n          r = r * width + s[mask & (s[i] = s[j = mask & j + t]) + (s[j] = t)];\n        }\n\n        me.i = i;\n        me.j = j;\n        return r; // For robust unpredictability, the function call below automatically\n        // discards an initial batch of values.  This is called RC4-drop[256].\n        // See http://google.com/search?q=rsa+fluhrer+response&btnI\n      };\n    } //\n    // copy()\n    // Copies internal state of ARC4 to or from a plain object.\n    //\n\n\n    function copy(f, t) {\n      t.i = f.i;\n      t.j = f.j;\n      t.S = f.S.slice();\n      return t;\n    } //\n    // flatten()\n    // Converts an object tree to nested arrays of strings.\n    //\n\n\n    function flatten(obj, depth) {\n      var result = [],\n          typ = typeof obj,\n          prop;\n\n      if (depth && typ == \"object\") {\n        for (prop in obj) {\n          try {\n            result.push(flatten(obj[prop], depth - 1));\n          } catch (e) {}\n        }\n      }\n\n      return result.length ? result : typ == \"string\" ? obj : obj + \"\\0\";\n    } //\n    // mixkey()\n    // Mixes a string seed into a key that is an array of integers, and\n    // returns a shortened string seed that is equivalent to the result key.\n    //\n\n\n    function mixkey(seed, key) {\n      var stringseed = seed + \"\",\n          smear,\n          j = 0;\n\n      while (j < stringseed.length) {\n        key[mask & j] = mask & (smear ^= key[mask & j] * 19) + stringseed.charCodeAt(j++);\n      }\n\n      return tostring(key);\n    } //\n    // autoseed()\n    // Returns an object for autoseeding, using window.crypto and Node crypto\n    // module if available.\n    //\n\n\n    function autoseed() {\n      try {\n        if (nodecrypto) {\n          return tostring(nodecrypto.randomBytes(width));\n        }\n\n        var out = new Uint8Array(width);\n        (global.crypto || global.msCrypto).getRandomValues(out);\n        return tostring(out);\n      } catch (e) {\n        var browser = global.navigator,\n            plugins = browser && browser.plugins;\n        return [+new Date(), global, plugins, global.screen, tostring(pool)];\n      }\n    } //\n    // tostring()\n    // Converts an array of charcodes to a string\n    //\n\n\n    function tostring(a) {\n      return String.fromCharCode.apply(0, a);\n    } //\n    // When seedrandom.js is loaded, we immediately mix a few bits\n    // from the built-in RNG into the entropy pool.  Because we do\n    // not want to interfere with deterministic PRNG state later,\n    // seedrandom will not call math.random on its own again after\n    // initialization.\n    //\n\n\n    mixkey(math.random(), pool); //\n    // Nodejs and AMD support: export the implementation as a module using\n    // either convention.\n    //\n    // End anonymous scope, and pass initial values.\n  })([], // pool: entropy pool starts empty\n  BMMath // math: package containing random, pow, and seedrandom\n  );\n  /* eslint-disable */\n\n\n  var BezierFactory = function () {\n    /**\r\n       * BezierEasing - use bezier curve for transition easing function\r\n       * by Ga\u00EBtan Renaudeau 2014 - 2015 \u2013 MIT License\r\n       *\r\n       * Credits: is based on Firefox's nsSMILKeySpline.cpp\r\n       * Usage:\r\n       * var spline = BezierEasing([ 0.25, 0.1, 0.25, 1.0 ])\r\n       * spline.get(x) => returns the easing value | x must be in [0, 1] range\r\n       *\r\n       */\n    var ob = {};\n    ob.getBezierEasing = getBezierEasing;\n    var beziers = {};\n\n    function getBezierEasing(a, b, c, d, nm) {\n      var str = nm || (\"bez_\" + a + \"_\" + b + \"_\" + c + \"_\" + d).replace(/\\./g, \"p\");\n\n      if (beziers[str]) {\n        return beziers[str];\n      }\n\n      var bezEasing = new BezierEasing([a, b, c, d]);\n      beziers[str] = bezEasing;\n      return bezEasing;\n    } // These values are established by empiricism with tests (tradeoff: performance VS precision)\n\n\n    var NEWTON_ITERATIONS = 4;\n    var NEWTON_MIN_SLOPE = 0.001;\n    var SUBDIVISION_PRECISION = 1e-7;\n    var SUBDIVISION_MAX_ITERATIONS = 10;\n    var kSplineTableSize = 11;\n    var kSampleStepSize = 1 / (kSplineTableSize - 1);\n    var float32ArraySupported = typeof Float32Array === \"function\";\n\n    function A(aA1, aA2) {\n      return 1 - 3 * aA2 + 3 * aA1;\n    }\n\n    function B(aA1, aA2) {\n      return 3 * aA2 - 6 * aA1;\n    }\n\n    function C(aA1) {\n      return 3 * aA1;\n    } // Returns x(t) given t, x1, and x2, or y(t) given t, y1, and y2.\n\n\n    function calcBezier(aT, aA1, aA2) {\n      return ((A(aA1, aA2) * aT + B(aA1, aA2)) * aT + C(aA1)) * aT;\n    } // Returns dx/dt given t, x1, and x2, or dy/dt given t, y1, and y2.\n\n\n    function getSlope(aT, aA1, aA2) {\n      return 3 * A(aA1, aA2) * aT * aT + 2 * B(aA1, aA2) * aT + C(aA1);\n    }\n\n    function binarySubdivide(aX, aA, aB, mX1, mX2) {\n      var currentX,\n          currentT,\n          i = 0;\n\n      do {\n        currentT = aA + (aB - aA) / 2;\n        currentX = calcBezier(currentT, mX1, mX2) - aX;\n\n        if (currentX > 0) {\n          aB = currentT;\n        } else {\n          aA = currentT;\n        }\n      } while (Math.abs(currentX) > SUBDIVISION_PRECISION && ++i < SUBDIVISION_MAX_ITERATIONS);\n\n      return currentT;\n    }\n\n    function newtonRaphsonIterate(aX, aGuessT, mX1, mX2) {\n      for (var i = 0; i < NEWTON_ITERATIONS; ++i) {\n        var currentSlope = getSlope(aGuessT, mX1, mX2);\n        if (currentSlope === 0) return aGuessT;\n        var currentX = calcBezier(aGuessT, mX1, mX2) - aX;\n        aGuessT -= currentX / currentSlope;\n      }\n\n      return aGuessT;\n    }\n    /**\r\n       * points is an array of [ mX1, mY1, mX2, mY2 ]\r\n       */\n\n\n    function BezierEasing(points) {\n      (this || _global)._p = points;\n      (this || _global)._mSampleValues = float32ArraySupported ? new Float32Array(kSplineTableSize) : new Array(kSplineTableSize);\n      (this || _global)._precomputed = false;\n      (this || _global).get = (this || _global).get.bind(this || _global);\n    }\n\n    BezierEasing.prototype = {\n      get: function (x) {\n        var mX1 = (this || _global)._p[0],\n            mY1 = (this || _global)._p[1],\n            mX2 = (this || _global)._p[2],\n            mY2 = (this || _global)._p[3];\n        if (!(this || _global)._precomputed) this._precompute();\n        if (mX1 === mY1 && mX2 === mY2) return x; // linear\n        // Because JavaScript number are imprecise, we should guarantee the extremes are right.\n\n        if (x === 0) return 0;\n        if (x === 1) return 1;\n        return calcBezier(this._getTForX(x), mY1, mY2);\n      },\n      // Private part\n      _precompute: function () {\n        var mX1 = (this || _global)._p[0],\n            mY1 = (this || _global)._p[1],\n            mX2 = (this || _global)._p[2],\n            mY2 = (this || _global)._p[3];\n        (this || _global)._precomputed = true;\n\n        if (mX1 !== mY1 || mX2 !== mY2) {\n          this._calcSampleValues();\n        }\n      },\n      _calcSampleValues: function () {\n        var mX1 = (this || _global)._p[0],\n            mX2 = (this || _global)._p[2];\n\n        for (var i = 0; i < kSplineTableSize; ++i) {\n          (this || _global)._mSampleValues[i] = calcBezier(i * kSampleStepSize, mX1, mX2);\n        }\n      },\n\n      /**\r\n           * getTForX chose the fastest heuristic to determine the percentage value precisely from a given X projection.\r\n           */\n      _getTForX: function (aX) {\n        var mX1 = (this || _global)._p[0],\n            mX2 = (this || _global)._p[2],\n            mSampleValues = (this || _global)._mSampleValues;\n        var intervalStart = 0;\n        var currentSample = 1;\n        var lastSample = kSplineTableSize - 1;\n\n        for (; currentSample !== lastSample && mSampleValues[currentSample] <= aX; ++currentSample) {\n          intervalStart += kSampleStepSize;\n        }\n\n        --currentSample; // Interpolate to provide an initial guess for t\n\n        var dist = (aX - mSampleValues[currentSample]) / (mSampleValues[currentSample + 1] - mSampleValues[currentSample]);\n        var guessForT = intervalStart + dist * kSampleStepSize;\n        var initialSlope = getSlope(guessForT, mX1, mX2);\n\n        if (initialSlope >= NEWTON_MIN_SLOPE) {\n          return newtonRaphsonIterate(aX, guessForT, mX1, mX2);\n        }\n\n        if (initialSlope === 0) {\n          return guessForT;\n        }\n\n        return binarySubdivide(aX, intervalStart, intervalStart + kSampleStepSize, mX1, mX2);\n      }\n    };\n    return ob;\n  }();\n\n  (function () {\n    var lastTime = 0;\n    var vendors = [\"ms\", \"moz\", \"webkit\", \"o\"];\n\n    for (var x = 0; x < vendors.length && !window.requestAnimationFrame; ++x) {\n      // eslint-disable-line no-plusplus\n      window.requestAnimationFrame = window[vendors[x] + \"RequestAnimationFrame\"];\n      window.cancelAnimationFrame = window[vendors[x] + \"CancelAnimationFrame\"] || window[vendors[x] + \"CancelRequestAnimationFrame\"];\n    }\n\n    if (!window.requestAnimationFrame) {\n      window.requestAnimationFrame = function (callback) {\n        var currTime = new Date().getTime();\n        var timeToCall = Math.max(0, 16 - (currTime - lastTime));\n        var id = setTimeout(function () {\n          callback(currTime + timeToCall);\n        }, timeToCall);\n        lastTime = currTime + timeToCall;\n        return id;\n      };\n    }\n\n    if (!window.cancelAnimationFrame) {\n      window.cancelAnimationFrame = function (id) {\n        clearTimeout(id);\n      };\n    }\n  })();\n  /* exported extendPrototype, getDescriptor, createProxyFunction */\n\n\n  function extendPrototype(sources, destination) {\n    var i;\n    var len = sources.length;\n    var sourcePrototype;\n\n    for (i = 0; i < len; i += 1) {\n      sourcePrototype = sources[i].prototype;\n\n      for (var attr in sourcePrototype) {\n        if (Object.prototype.hasOwnProperty.call(sourcePrototype, attr)) destination.prototype[attr] = sourcePrototype[attr];\n      }\n    }\n  }\n\n  function getDescriptor(object, prop) {\n    return Object.getOwnPropertyDescriptor(object, prop);\n  }\n\n  function createProxyFunction(prototype) {\n    function ProxyFunction() {}\n\n    ProxyFunction.prototype = prototype;\n    return ProxyFunction;\n  }\n  /* global segmentsLengthPool, defaultCurveSegments, createSizedArray, bmPow, bmSqrt, bmFloor, createTypedArray, bezierLengthPool */\n\n  /* exported bez */\n\n\n  function bezFunction() {\n    var math = Math;\n\n    function pointOnLine2D(x1, y1, x2, y2, x3, y3) {\n      var det1 = x1 * y2 + y1 * x3 + x2 * y3 - x3 * y2 - y3 * x1 - x2 * y1;\n      return det1 > -0.001 && det1 < 0.001;\n    }\n\n    function pointOnLine3D(x1, y1, z1, x2, y2, z2, x3, y3, z3) {\n      if (z1 === 0 && z2 === 0 && z3 === 0) {\n        return pointOnLine2D(x1, y1, x2, y2, x3, y3);\n      }\n\n      var dist1 = math.sqrt(math.pow(x2 - x1, 2) + math.pow(y2 - y1, 2) + math.pow(z2 - z1, 2));\n      var dist2 = math.sqrt(math.pow(x3 - x1, 2) + math.pow(y3 - y1, 2) + math.pow(z3 - z1, 2));\n      var dist3 = math.sqrt(math.pow(x3 - x2, 2) + math.pow(y3 - y2, 2) + math.pow(z3 - z2, 2));\n      var diffDist;\n\n      if (dist1 > dist2) {\n        if (dist1 > dist3) {\n          diffDist = dist1 - dist2 - dist3;\n        } else {\n          diffDist = dist3 - dist2 - dist1;\n        }\n      } else if (dist3 > dist2) {\n        diffDist = dist3 - dist2 - dist1;\n      } else {\n        diffDist = dist2 - dist1 - dist3;\n      }\n\n      return diffDist > -0.0001 && diffDist < 0.0001;\n    }\n\n    var getBezierLength = function () {\n      return function (pt1, pt2, pt3, pt4) {\n        var curveSegments = defaultCurveSegments;\n        var k;\n        var i;\n        var len;\n        var ptCoord;\n        var perc;\n        var addedLength = 0;\n        var ptDistance;\n        var point = [];\n        var lastPoint = [];\n        var lengthData = bezierLengthPool.newElement();\n        len = pt3.length;\n\n        for (k = 0; k < curveSegments; k += 1) {\n          perc = k / (curveSegments - 1);\n          ptDistance = 0;\n\n          for (i = 0; i < len; i += 1) {\n            ptCoord = bmPow(1 - perc, 3) * pt1[i] + 3 * bmPow(1 - perc, 2) * perc * pt3[i] + 3 * (1 - perc) * bmPow(perc, 2) * pt4[i] + bmPow(perc, 3) * pt2[i];\n            point[i] = ptCoord;\n\n            if (lastPoint[i] !== null) {\n              ptDistance += bmPow(point[i] - lastPoint[i], 2);\n            }\n\n            lastPoint[i] = point[i];\n          }\n\n          if (ptDistance) {\n            ptDistance = bmSqrt(ptDistance);\n            addedLength += ptDistance;\n          }\n\n          lengthData.percents[k] = perc;\n          lengthData.lengths[k] = addedLength;\n        }\n\n        lengthData.addedLength = addedLength;\n        return lengthData;\n      };\n    }();\n\n    function getSegmentsLength(shapeData) {\n      var segmentsLength = segmentsLengthPool.newElement();\n      var closed = shapeData.c;\n      var pathV = shapeData.v;\n      var pathO = shapeData.o;\n      var pathI = shapeData.i;\n      var i;\n      var len = shapeData._length;\n      var lengths = segmentsLength.lengths;\n      var totalLength = 0;\n\n      for (i = 0; i < len - 1; i += 1) {\n        lengths[i] = getBezierLength(pathV[i], pathV[i + 1], pathO[i], pathI[i + 1]);\n        totalLength += lengths[i].addedLength;\n      }\n\n      if (closed && len) {\n        lengths[i] = getBezierLength(pathV[i], pathV[0], pathO[i], pathI[0]);\n        totalLength += lengths[i].addedLength;\n      }\n\n      segmentsLength.totalLength = totalLength;\n      return segmentsLength;\n    }\n\n    function BezierData(length) {\n      (this || _global).segmentLength = 0;\n      (this || _global).points = new Array(length);\n    }\n\n    function PointData(partial, point) {\n      (this || _global).partialLength = partial;\n      (this || _global).point = point;\n    }\n\n    var buildBezierData = function () {\n      var storedData = {};\n      return function (pt1, pt2, pt3, pt4) {\n        var bezierName = (pt1[0] + \"_\" + pt1[1] + \"_\" + pt2[0] + \"_\" + pt2[1] + \"_\" + pt3[0] + \"_\" + pt3[1] + \"_\" + pt4[0] + \"_\" + pt4[1]).replace(/\\./g, \"p\");\n\n        if (!storedData[bezierName]) {\n          var curveSegments = defaultCurveSegments;\n          var k;\n          var i;\n          var len;\n          var ptCoord;\n          var perc;\n          var addedLength = 0;\n          var ptDistance;\n          var point;\n          var lastPoint = null;\n\n          if (pt1.length === 2 && (pt1[0] !== pt2[0] || pt1[1] !== pt2[1]) && pointOnLine2D(pt1[0], pt1[1], pt2[0], pt2[1], pt1[0] + pt3[0], pt1[1] + pt3[1]) && pointOnLine2D(pt1[0], pt1[1], pt2[0], pt2[1], pt2[0] + pt4[0], pt2[1] + pt4[1])) {\n            curveSegments = 2;\n          }\n\n          var bezierData = new BezierData(curveSegments);\n          len = pt3.length;\n\n          for (k = 0; k < curveSegments; k += 1) {\n            point = createSizedArray(len);\n            perc = k / (curveSegments - 1);\n            ptDistance = 0;\n\n            for (i = 0; i < len; i += 1) {\n              ptCoord = bmPow(1 - perc, 3) * pt1[i] + 3 * bmPow(1 - perc, 2) * perc * (pt1[i] + pt3[i]) + 3 * (1 - perc) * bmPow(perc, 2) * (pt2[i] + pt4[i]) + bmPow(perc, 3) * pt2[i];\n              point[i] = ptCoord;\n\n              if (lastPoint !== null) {\n                ptDistance += bmPow(point[i] - lastPoint[i], 2);\n              }\n            }\n\n            ptDistance = bmSqrt(ptDistance);\n            addedLength += ptDistance;\n            bezierData.points[k] = new PointData(ptDistance, point);\n            lastPoint = point;\n          }\n\n          bezierData.segmentLength = addedLength;\n          storedData[bezierName] = bezierData;\n        }\n\n        return storedData[bezierName];\n      };\n    }();\n\n    function getDistancePerc(perc, bezierData) {\n      var percents = bezierData.percents;\n      var lengths = bezierData.lengths;\n      var len = percents.length;\n      var initPos = bmFloor((len - 1) * perc);\n      var lengthPos = perc * bezierData.addedLength;\n      var lPerc = 0;\n\n      if (initPos === len - 1 || initPos === 0 || lengthPos === lengths[initPos]) {\n        return percents[initPos];\n      }\n\n      var dir = lengths[initPos] > lengthPos ? -1 : 1;\n      var flag = true;\n\n      while (flag) {\n        if (lengths[initPos] <= lengthPos && lengths[initPos + 1] > lengthPos) {\n          lPerc = (lengthPos - lengths[initPos]) / (lengths[initPos + 1] - lengths[initPos]);\n          flag = false;\n        } else {\n          initPos += dir;\n        }\n\n        if (initPos < 0 || initPos >= len - 1) {\n          // FIX for TypedArrays that don't store floating point values with enough accuracy\n          if (initPos === len - 1) {\n            return percents[initPos];\n          }\n\n          flag = false;\n        }\n      }\n\n      return percents[initPos] + (percents[initPos + 1] - percents[initPos]) * lPerc;\n    }\n\n    function getPointInSegment(pt1, pt2, pt3, pt4, percent, bezierData) {\n      var t1 = getDistancePerc(percent, bezierData);\n      var u1 = 1 - t1;\n      var ptX = math.round((u1 * u1 * u1 * pt1[0] + (t1 * u1 * u1 + u1 * t1 * u1 + u1 * u1 * t1) * pt3[0] + (t1 * t1 * u1 + u1 * t1 * t1 + t1 * u1 * t1) * pt4[0] + t1 * t1 * t1 * pt2[0]) * 1000) / 1000;\n      var ptY = math.round((u1 * u1 * u1 * pt1[1] + (t1 * u1 * u1 + u1 * t1 * u1 + u1 * u1 * t1) * pt3[1] + (t1 * t1 * u1 + u1 * t1 * t1 + t1 * u1 * t1) * pt4[1] + t1 * t1 * t1 * pt2[1]) * 1000) / 1000;\n      return [ptX, ptY];\n    }\n\n    var bezierSegmentPoints = createTypedArray(\"float32\", 8);\n\n    function getNewSegment(pt1, pt2, pt3, pt4, startPerc, endPerc, bezierData) {\n      if (startPerc < 0) {\n        startPerc = 0;\n      } else if (startPerc > 1) {\n        startPerc = 1;\n      }\n\n      var t0 = getDistancePerc(startPerc, bezierData);\n      endPerc = endPerc > 1 ? 1 : endPerc;\n      var t1 = getDistancePerc(endPerc, bezierData);\n      var i;\n      var len = pt1.length;\n      var u0 = 1 - t0;\n      var u1 = 1 - t1;\n      var u0u0u0 = u0 * u0 * u0;\n      var t0u0u0_3 = t0 * u0 * u0 * 3; // eslint-disable-line camelcase\n\n      var t0t0u0_3 = t0 * t0 * u0 * 3; // eslint-disable-line camelcase\n\n      var t0t0t0 = t0 * t0 * t0; //\n\n      var u0u0u1 = u0 * u0 * u1;\n      var t0u0u1_3 = t0 * u0 * u1 + u0 * t0 * u1 + u0 * u0 * t1; // eslint-disable-line camelcase\n\n      var t0t0u1_3 = t0 * t0 * u1 + u0 * t0 * t1 + t0 * u0 * t1; // eslint-disable-line camelcase\n\n      var t0t0t1 = t0 * t0 * t1; //\n\n      var u0u1u1 = u0 * u1 * u1;\n      var t0u1u1_3 = t0 * u1 * u1 + u0 * t1 * u1 + u0 * u1 * t1; // eslint-disable-line camelcase\n\n      var t0t1u1_3 = t0 * t1 * u1 + u0 * t1 * t1 + t0 * u1 * t1; // eslint-disable-line camelcase\n\n      var t0t1t1 = t0 * t1 * t1; //\n\n      var u1u1u1 = u1 * u1 * u1;\n      var t1u1u1_3 = t1 * u1 * u1 + u1 * t1 * u1 + u1 * u1 * t1; // eslint-disable-line camelcase\n\n      var t1t1u1_3 = t1 * t1 * u1 + u1 * t1 * t1 + t1 * u1 * t1; // eslint-disable-line camelcase\n\n      var t1t1t1 = t1 * t1 * t1;\n\n      for (i = 0; i < len; i += 1) {\n        bezierSegmentPoints[i * 4] = math.round((u0u0u0 * pt1[i] + t0u0u0_3 * pt3[i] + t0t0u0_3 * pt4[i] + t0t0t0 * pt2[i]) * 1000) / 1000; // eslint-disable-line camelcase\n\n        bezierSegmentPoints[i * 4 + 1] = math.round((u0u0u1 * pt1[i] + t0u0u1_3 * pt3[i] + t0t0u1_3 * pt4[i] + t0t0t1 * pt2[i]) * 1000) / 1000; // eslint-disable-line camelcase\n\n        bezierSegmentPoints[i * 4 + 2] = math.round((u0u1u1 * pt1[i] + t0u1u1_3 * pt3[i] + t0t1u1_3 * pt4[i] + t0t1t1 * pt2[i]) * 1000) / 1000; // eslint-disable-line camelcase\n\n        bezierSegmentPoints[i * 4 + 3] = math.round((u1u1u1 * pt1[i] + t1u1u1_3 * pt3[i] + t1t1u1_3 * pt4[i] + t1t1t1 * pt2[i]) * 1000) / 1000; // eslint-disable-line camelcase\n      }\n\n      return bezierSegmentPoints;\n    }\n\n    return {\n      getSegmentsLength: getSegmentsLength,\n      getNewSegment: getNewSegment,\n      getPointInSegment: getPointInSegment,\n      buildBezierData: buildBezierData,\n      pointOnLine2D: pointOnLine2D,\n      pointOnLine3D: pointOnLine3D\n    };\n  }\n\n  var bez = bezFunction();\n  /* exported dataManager */\n\n  function dataFunctionManager() {\n    // var tCanvasHelper = createTag('canvas').getContext('2d');\n    function completeLayers(layers, comps, fontManager) {\n      var layerData;\n      var i;\n      var len = layers.length;\n      var j;\n      var jLen;\n      var k;\n      var kLen;\n\n      for (i = 0; i < len; i += 1) {\n        layerData = layers[i];\n\n        if (\"ks\" in layerData && !layerData.completed) {\n          layerData.completed = true;\n\n          if (layerData.tt) {\n            layers[i - 1].td = layerData.tt;\n          }\n\n          if (layerData.hasMask) {\n            var maskProps = layerData.masksProperties;\n            jLen = maskProps.length;\n\n            for (j = 0; j < jLen; j += 1) {\n              if (maskProps[j].pt.k.i) {\n                convertPathsToAbsoluteValues(maskProps[j].pt.k);\n              } else {\n                kLen = maskProps[j].pt.k.length;\n\n                for (k = 0; k < kLen; k += 1) {\n                  if (maskProps[j].pt.k[k].s) {\n                    convertPathsToAbsoluteValues(maskProps[j].pt.k[k].s[0]);\n                  }\n\n                  if (maskProps[j].pt.k[k].e) {\n                    convertPathsToAbsoluteValues(maskProps[j].pt.k[k].e[0]);\n                  }\n                }\n              }\n            }\n          }\n\n          if (layerData.ty === 0) {\n            layerData.layers = findCompLayers(layerData.refId, comps);\n            completeLayers(layerData.layers, comps, fontManager);\n          } else if (layerData.ty === 4) {\n            completeShapes(layerData.shapes);\n          } else if (layerData.ty === 5) {\n            completeText(layerData, fontManager);\n          }\n        }\n      }\n    }\n\n    function findCompLayers(id, comps) {\n      var i = 0;\n      var len = comps.length;\n\n      while (i < len) {\n        if (comps[i].id === id) {\n          if (!comps[i].layers.__used) {\n            comps[i].layers.__used = true;\n            return comps[i].layers;\n          }\n\n          return JSON.parse(JSON.stringify(comps[i].layers));\n        }\n\n        i += 1;\n      }\n\n      return null;\n    }\n\n    function completeShapes(arr) {\n      var i;\n      var len = arr.length;\n      var j;\n      var jLen;\n\n      for (i = len - 1; i >= 0; i -= 1) {\n        if (arr[i].ty === \"sh\") {\n          if (arr[i].ks.k.i) {\n            convertPathsToAbsoluteValues(arr[i].ks.k);\n          } else {\n            jLen = arr[i].ks.k.length;\n\n            for (j = 0; j < jLen; j += 1) {\n              if (arr[i].ks.k[j].s) {\n                convertPathsToAbsoluteValues(arr[i].ks.k[j].s[0]);\n              }\n\n              if (arr[i].ks.k[j].e) {\n                convertPathsToAbsoluteValues(arr[i].ks.k[j].e[0]);\n              }\n            }\n          }\n        } else if (arr[i].ty === \"gr\") {\n          completeShapes(arr[i].it);\n        }\n      }\n    }\n\n    function convertPathsToAbsoluteValues(path) {\n      var i;\n      var len = path.i.length;\n\n      for (i = 0; i < len; i += 1) {\n        path.i[i][0] += path.v[i][0];\n        path.i[i][1] += path.v[i][1];\n        path.o[i][0] += path.v[i][0];\n        path.o[i][1] += path.v[i][1];\n      }\n    }\n\n    function checkVersion(minimum, animVersionString) {\n      var animVersion = animVersionString ? animVersionString.split(\".\") : [100, 100, 100];\n\n      if (minimum[0] > animVersion[0]) {\n        return true;\n      }\n\n      if (animVersion[0] > minimum[0]) {\n        return false;\n      }\n\n      if (minimum[1] > animVersion[1]) {\n        return true;\n      }\n\n      if (animVersion[1] > minimum[1]) {\n        return false;\n      }\n\n      if (minimum[2] > animVersion[2]) {\n        return true;\n      }\n\n      if (animVersion[2] > minimum[2]) {\n        return false;\n      }\n\n      return null;\n    }\n\n    var checkText = function () {\n      var minimumVersion = [4, 4, 14];\n\n      function updateTextLayer(textLayer) {\n        var documentData = textLayer.t.d;\n        textLayer.t.d = {\n          k: [{\n            s: documentData,\n            t: 0\n          }]\n        };\n      }\n\n      function iterateLayers(layers) {\n        var i;\n        var len = layers.length;\n\n        for (i = 0; i < len; i += 1) {\n          if (layers[i].ty === 5) {\n            updateTextLayer(layers[i]);\n          }\n        }\n      }\n\n      return function (animationData) {\n        if (checkVersion(minimumVersion, animationData.v)) {\n          iterateLayers(animationData.layers);\n\n          if (animationData.assets) {\n            var i;\n            var len = animationData.assets.length;\n\n            for (i = 0; i < len; i += 1) {\n              if (animationData.assets[i].layers) {\n                iterateLayers(animationData.assets[i].layers);\n              }\n            }\n          }\n        }\n      };\n    }();\n\n    var checkChars = function () {\n      var minimumVersion = [4, 7, 99];\n      return function (animationData) {\n        if (animationData.chars && !checkVersion(minimumVersion, animationData.v)) {\n          var i;\n          var len = animationData.chars.length;\n          var j;\n          var jLen;\n          var pathData;\n          var paths;\n\n          for (i = 0; i < len; i += 1) {\n            if (animationData.chars[i].data && animationData.chars[i].data.shapes) {\n              paths = animationData.chars[i].data.shapes[0].it;\n              jLen = paths.length;\n\n              for (j = 0; j < jLen; j += 1) {\n                pathData = paths[j].ks.k;\n\n                if (!pathData.__converted) {\n                  convertPathsToAbsoluteValues(paths[j].ks.k);\n                  pathData.__converted = true;\n                }\n              }\n            }\n          }\n        }\n      };\n    }();\n\n    var checkColors = function () {\n      var minimumVersion = [4, 1, 9];\n\n      function iterateShapes(shapes) {\n        var i;\n        var len = shapes.length;\n        var j;\n        var jLen;\n\n        for (i = 0; i < len; i += 1) {\n          if (shapes[i].ty === \"gr\") {\n            iterateShapes(shapes[i].it);\n          } else if (shapes[i].ty === \"fl\" || shapes[i].ty === \"st\") {\n            if (shapes[i].c.k && shapes[i].c.k[0].i) {\n              jLen = shapes[i].c.k.length;\n\n              for (j = 0; j < jLen; j += 1) {\n                if (shapes[i].c.k[j].s) {\n                  shapes[i].c.k[j].s[0] /= 255;\n                  shapes[i].c.k[j].s[1] /= 255;\n                  shapes[i].c.k[j].s[2] /= 255;\n                  shapes[i].c.k[j].s[3] /= 255;\n                }\n\n                if (shapes[i].c.k[j].e) {\n                  shapes[i].c.k[j].e[0] /= 255;\n                  shapes[i].c.k[j].e[1] /= 255;\n                  shapes[i].c.k[j].e[2] /= 255;\n                  shapes[i].c.k[j].e[3] /= 255;\n                }\n              }\n            } else {\n              shapes[i].c.k[0] /= 255;\n              shapes[i].c.k[1] /= 255;\n              shapes[i].c.k[2] /= 255;\n              shapes[i].c.k[3] /= 255;\n            }\n          }\n        }\n      }\n\n      function iterateLayers(layers) {\n        var i;\n        var len = layers.length;\n\n        for (i = 0; i < len; i += 1) {\n          if (layers[i].ty === 4) {\n            iterateShapes(layers[i].shapes);\n          }\n        }\n      }\n\n      return function (animationData) {\n        if (checkVersion(minimumVersion, animationData.v)) {\n          iterateLayers(animationData.layers);\n\n          if (animationData.assets) {\n            var i;\n            var len = animationData.assets.length;\n\n            for (i = 0; i < len; i += 1) {\n              if (animationData.assets[i].layers) {\n                iterateLayers(animationData.assets[i].layers);\n              }\n            }\n          }\n        }\n      };\n    }();\n\n    var checkShapes = function () {\n      var minimumVersion = [4, 4, 18];\n\n      function completeClosingShapes(arr) {\n        var i;\n        var len = arr.length;\n        var j;\n        var jLen;\n\n        for (i = len - 1; i >= 0; i -= 1) {\n          if (arr[i].ty === \"sh\") {\n            if (arr[i].ks.k.i) {\n              arr[i].ks.k.c = arr[i].closed;\n            } else {\n              jLen = arr[i].ks.k.length;\n\n              for (j = 0; j < jLen; j += 1) {\n                if (arr[i].ks.k[j].s) {\n                  arr[i].ks.k[j].s[0].c = arr[i].closed;\n                }\n\n                if (arr[i].ks.k[j].e) {\n                  arr[i].ks.k[j].e[0].c = arr[i].closed;\n                }\n              }\n            }\n          } else if (arr[i].ty === \"gr\") {\n            completeClosingShapes(arr[i].it);\n          }\n        }\n      }\n\n      function iterateLayers(layers) {\n        var layerData;\n        var i;\n        var len = layers.length;\n        var j;\n        var jLen;\n        var k;\n        var kLen;\n\n        for (i = 0; i < len; i += 1) {\n          layerData = layers[i];\n\n          if (layerData.hasMask) {\n            var maskProps = layerData.masksProperties;\n            jLen = maskProps.length;\n\n            for (j = 0; j < jLen; j += 1) {\n              if (maskProps[j].pt.k.i) {\n                maskProps[j].pt.k.c = maskProps[j].cl;\n              } else {\n                kLen = maskProps[j].pt.k.length;\n\n                for (k = 0; k < kLen; k += 1) {\n                  if (maskProps[j].pt.k[k].s) {\n                    maskProps[j].pt.k[k].s[0].c = maskProps[j].cl;\n                  }\n\n                  if (maskProps[j].pt.k[k].e) {\n                    maskProps[j].pt.k[k].e[0].c = maskProps[j].cl;\n                  }\n                }\n              }\n            }\n          }\n\n          if (layerData.ty === 4) {\n            completeClosingShapes(layerData.shapes);\n          }\n        }\n      }\n\n      return function (animationData) {\n        if (checkVersion(minimumVersion, animationData.v)) {\n          iterateLayers(animationData.layers);\n\n          if (animationData.assets) {\n            var i;\n            var len = animationData.assets.length;\n\n            for (i = 0; i < len; i += 1) {\n              if (animationData.assets[i].layers) {\n                iterateLayers(animationData.assets[i].layers);\n              }\n            }\n          }\n        }\n      };\n    }();\n\n    function completeData(animationData, fontManager) {\n      if (animationData.__complete) {\n        return;\n      }\n\n      checkColors(animationData);\n      checkText(animationData);\n      checkChars(animationData);\n      checkShapes(animationData);\n      completeLayers(animationData.layers, animationData.assets, fontManager);\n      animationData.__complete = true;\n    }\n\n    function completeText(data) {\n      if (data.t.a.length === 0 && !(\"m\" in data.t.p)) {\n        data.singleShape = true;\n      }\n    }\n\n    var moduleOb = {};\n    moduleOb.completeData = completeData;\n    moduleOb.checkColors = checkColors;\n    moduleOb.checkChars = checkChars;\n    moduleOb.checkShapes = checkShapes;\n    moduleOb.completeLayers = completeLayers;\n    return moduleOb;\n  }\n\n  var dataManager = dataFunctionManager();\n  /* exported getFontProperties */\n\n  function getFontProperties(fontData) {\n    var styles = fontData.fStyle ? fontData.fStyle.split(\" \") : [];\n    var fWeight = \"normal\";\n    var fStyle = \"normal\";\n    var len = styles.length;\n    var styleName;\n\n    for (var i = 0; i < len; i += 1) {\n      styleName = styles[i].toLowerCase();\n\n      switch (styleName) {\n        case \"italic\":\n          fStyle = \"italic\";\n          break;\n\n        case \"bold\":\n          fWeight = \"700\";\n          break;\n\n        case \"black\":\n          fWeight = \"900\";\n          break;\n\n        case \"medium\":\n          fWeight = \"500\";\n          break;\n\n        case \"regular\":\n        case \"normal\":\n          fWeight = \"400\";\n          break;\n\n        case \"light\":\n        case \"thin\":\n          fWeight = \"200\";\n          break;\n\n        default:\n          break;\n      }\n    }\n\n    return {\n      style: fStyle,\n      weight: fontData.fWeight || fWeight\n    };\n  }\n  /* global createNS, createTag, getFontProperties */\n\n  /* exported FontManager */\n\n\n  var FontManager = function () {\n    var maxWaitingTime = 5000;\n    var emptyChar = {\n      w: 0,\n      size: 0,\n      shapes: []\n    };\n    var combinedCharacters = []; // Hindi characters\n\n    combinedCharacters = combinedCharacters.concat([2304, 2305, 2306, 2307, 2362, 2363, 2364, 2364, 2366, 2367, 2368, 2369, 2370, 2371, 2372, 2373, 2374, 2375, 2376, 2377, 2378, 2379, 2380, 2381, 2382, 2383, 2387, 2388, 2389, 2390, 2391, 2402, 2403]);\n\n    function trimFontOptions(font) {\n      var familyArray = font.split(\",\");\n      var i;\n      var len = familyArray.length;\n      var enabledFamilies = [];\n\n      for (i = 0; i < len; i += 1) {\n        if (familyArray[i] !== \"sans-serif\" && familyArray[i] !== \"monospace\") {\n          enabledFamilies.push(familyArray[i]);\n        }\n      }\n\n      return enabledFamilies.join(\",\");\n    }\n\n    function setUpNode(font, family) {\n      var parentNode = createTag(\"span\"); // Node is invisible to screen readers.\n\n      parentNode.setAttribute(\"aria-hidden\", true);\n      parentNode.style.fontFamily = family;\n      var node = createTag(\"span\"); // Characters that vary significantly among different fonts\n\n      node.innerText = \"giItT1WQy@!-/#\"; // Visible - so we can measure it - but not on the screen\n\n      parentNode.style.position = \"absolute\";\n      parentNode.style.left = \"-10000px\";\n      parentNode.style.top = \"-10000px\"; // Large font size makes even subtle changes obvious\n\n      parentNode.style.fontSize = \"300px\"; // Reset any font properties\n\n      parentNode.style.fontVariant = \"normal\";\n      parentNode.style.fontStyle = \"normal\";\n      parentNode.style.fontWeight = \"normal\";\n      parentNode.style.letterSpacing = \"0\";\n      parentNode.appendChild(node);\n      document.body.appendChild(parentNode); // Remember width with no applied web font\n\n      var width = node.offsetWidth;\n      node.style.fontFamily = trimFontOptions(font) + \", \" + family;\n      return {\n        node: node,\n        w: width,\n        parent: parentNode\n      };\n    }\n\n    function checkLoadedFonts() {\n      var i;\n      var len = (this || _global).fonts.length;\n      var node;\n      var w;\n      var loadedCount = len;\n\n      for (i = 0; i < len; i += 1) {\n        if ((this || _global).fonts[i].loaded) {\n          loadedCount -= 1;\n        } else if ((this || _global).fonts[i].fOrigin === \"n\" || (this || _global).fonts[i].origin === 0) {\n          (this || _global).fonts[i].loaded = true;\n        } else {\n          node = (this || _global).fonts[i].monoCase.node;\n          w = (this || _global).fonts[i].monoCase.w;\n\n          if (node.offsetWidth !== w) {\n            loadedCount -= 1;\n            (this || _global).fonts[i].loaded = true;\n          } else {\n            node = (this || _global).fonts[i].sansCase.node;\n            w = (this || _global).fonts[i].sansCase.w;\n\n            if (node.offsetWidth !== w) {\n              loadedCount -= 1;\n              (this || _global).fonts[i].loaded = true;\n            }\n          }\n\n          if ((this || _global).fonts[i].loaded) {\n            (this || _global).fonts[i].sansCase.parent.parentNode.removeChild((this || _global).fonts[i].sansCase.parent);\n\n            (this || _global).fonts[i].monoCase.parent.parentNode.removeChild((this || _global).fonts[i].monoCase.parent);\n          }\n        }\n      }\n\n      if (loadedCount !== 0 && Date.now() - (this || _global).initTime < maxWaitingTime) {\n        setTimeout((this || _global).checkLoadedFontsBinded, 20);\n      } else {\n        setTimeout((this || _global).setIsLoadedBinded, 10);\n      }\n    }\n\n    function createHelper(def, fontData) {\n      var tHelper = createNS(\"text\");\n      tHelper.style.fontSize = \"100px\"; // tHelper.style.fontFamily = fontData.fFamily;\n\n      var fontProps = getFontProperties(fontData);\n      tHelper.setAttribute(\"font-family\", fontData.fFamily);\n      tHelper.setAttribute(\"font-style\", fontProps.style);\n      tHelper.setAttribute(\"font-weight\", fontProps.weight);\n      tHelper.textContent = \"1\";\n\n      if (fontData.fClass) {\n        tHelper.style.fontFamily = \"inherit\";\n        tHelper.setAttribute(\"class\", fontData.fClass);\n      } else {\n        tHelper.style.fontFamily = fontData.fFamily;\n      }\n\n      def.appendChild(tHelper);\n      var tCanvasHelper = createTag(\"canvas\").getContext(\"2d\");\n      tCanvasHelper.font = fontData.fWeight + \" \" + fontData.fStyle + \" 100px \" + fontData.fFamily; // tCanvasHelper.font = ' 100px '+ fontData.fFamily;\n\n      return tHelper;\n    }\n\n    function addFonts(fontData, defs) {\n      if (!fontData) {\n        (this || _global).isLoaded = true;\n        return;\n      }\n\n      if ((this || _global).chars) {\n        (this || _global).isLoaded = true;\n        (this || _global).fonts = fontData.list;\n        return;\n      }\n\n      var fontArr = fontData.list;\n      var i;\n      var len = fontArr.length;\n      var _pendingFonts = len;\n\n      for (i = 0; i < len; i += 1) {\n        var shouldLoadFont = true;\n        var loadedSelector;\n        var j;\n        fontArr[i].loaded = false;\n        fontArr[i].monoCase = setUpNode(fontArr[i].fFamily, \"monospace\");\n        fontArr[i].sansCase = setUpNode(fontArr[i].fFamily, \"sans-serif\");\n\n        if (!fontArr[i].fPath) {\n          fontArr[i].loaded = true;\n          _pendingFonts -= 1;\n        } else if (fontArr[i].fOrigin === \"p\" || fontArr[i].origin === 3) {\n          loadedSelector = document.querySelectorAll(\"style[f-forigin=\\\"p\\\"][f-family=\\\"\" + fontArr[i].fFamily + \"\\\"], style[f-origin=\\\"3\\\"][f-family=\\\"\" + fontArr[i].fFamily + \"\\\"]\");\n\n          if (loadedSelector.length > 0) {\n            shouldLoadFont = false;\n          }\n\n          if (shouldLoadFont) {\n            var s = createTag(\"style\");\n            s.setAttribute(\"f-forigin\", fontArr[i].fOrigin);\n            s.setAttribute(\"f-origin\", fontArr[i].origin);\n            s.setAttribute(\"f-family\", fontArr[i].fFamily);\n            s.type = \"text/css\";\n            s.innerText = \"@font-face {font-family: \" + fontArr[i].fFamily + \"; font-style: normal; src: url('\" + fontArr[i].fPath + \"');}\";\n            defs.appendChild(s);\n          }\n        } else if (fontArr[i].fOrigin === \"g\" || fontArr[i].origin === 1) {\n          loadedSelector = document.querySelectorAll(\"link[f-forigin=\\\"g\\\"], link[f-origin=\\\"1\\\"]\");\n\n          for (j = 0; j < loadedSelector.length; j += 1) {\n            if (loadedSelector[j].href.indexOf(fontArr[i].fPath) !== -1) {\n              // Font is already loaded\n              shouldLoadFont = false;\n            }\n          }\n\n          if (shouldLoadFont) {\n            var l = createTag(\"link\");\n            l.setAttribute(\"f-forigin\", fontArr[i].fOrigin);\n            l.setAttribute(\"f-origin\", fontArr[i].origin);\n            l.type = \"text/css\";\n            l.rel = \"stylesheet\";\n            l.href = fontArr[i].fPath;\n            document.body.appendChild(l);\n          }\n        } else if (fontArr[i].fOrigin === \"t\" || fontArr[i].origin === 2) {\n          loadedSelector = document.querySelectorAll(\"script[f-forigin=\\\"t\\\"], script[f-origin=\\\"2\\\"]\");\n\n          for (j = 0; j < loadedSelector.length; j += 1) {\n            if (fontArr[i].fPath === loadedSelector[j].src) {\n              // Font is already loaded\n              shouldLoadFont = false;\n            }\n          }\n\n          if (shouldLoadFont) {\n            var sc = createTag(\"link\");\n            sc.setAttribute(\"f-forigin\", fontArr[i].fOrigin);\n            sc.setAttribute(\"f-origin\", fontArr[i].origin);\n            sc.setAttribute(\"rel\", \"stylesheet\");\n            sc.setAttribute(\"href\", fontArr[i].fPath);\n            defs.appendChild(sc);\n          }\n        }\n\n        fontArr[i].helper = createHelper(defs, fontArr[i]);\n        fontArr[i].cache = {};\n\n        (this || _global).fonts.push(fontArr[i]);\n      }\n\n      if (_pendingFonts === 0) {\n        (this || _global).isLoaded = true;\n      } else {\n        // On some cases even if the font is loaded, it won't load correctly when measuring text on canvas.\n        // Adding this timeout seems to fix it\n        setTimeout((this || _global).checkLoadedFonts.bind(this || _global), 100);\n      }\n    }\n\n    function addChars(chars) {\n      if (!chars) {\n        return;\n      }\n\n      if (!(this || _global).chars) {\n        (this || _global).chars = [];\n      }\n\n      var i;\n      var len = chars.length;\n      var j;\n      var jLen = (this || _global).chars.length;\n      var found;\n\n      for (i = 0; i < len; i += 1) {\n        j = 0;\n        found = false;\n\n        while (j < jLen) {\n          if ((this || _global).chars[j].style === chars[i].style && (this || _global).chars[j].fFamily === chars[i].fFamily && (this || _global).chars[j].ch === chars[i].ch) {\n            found = true;\n          }\n\n          j += 1;\n        }\n\n        if (!found) {\n          (this || _global).chars.push(chars[i]);\n\n          jLen += 1;\n        }\n      }\n    }\n\n    function getCharData(char, style, font) {\n      var i = 0;\n      var len = (this || _global).chars.length;\n\n      while (i < len) {\n        if ((this || _global).chars[i].ch === char && (this || _global).chars[i].style === style && (this || _global).chars[i].fFamily === font) {\n          return (this || _global).chars[i];\n        }\n\n        i += 1;\n      }\n\n      if ((typeof char === \"string\" && char.charCodeAt(0) !== 13 || !char) && console && console.warn // eslint-disable-line no-console\n      && !(this || _global)._warned) {\n        (this || _global)._warned = true;\n        console.warn(\"Missing character from exported characters list: \", char, style, font); // eslint-disable-line no-console\n      }\n\n      return emptyChar;\n    }\n\n    function measureText(char, fontName, size) {\n      var fontData = this.getFontByName(fontName);\n      var index = char.charCodeAt(0);\n\n      if (!fontData.cache[index + 1]) {\n        var tHelper = fontData.helper; // Canvas version\n        // fontData.cache[index] = tHelper.measureText(char).width / 100;\n        // SVG version\n        // console.log(tHelper.getBBox().width)\n\n        if (char === \" \") {\n          tHelper.textContent = \"|\" + char + \"|\";\n          var doubleSize = tHelper.getComputedTextLength();\n          tHelper.textContent = \"||\";\n          var singleSize = tHelper.getComputedTextLength();\n          fontData.cache[index + 1] = (doubleSize - singleSize) / 100;\n        } else {\n          tHelper.textContent = char;\n          fontData.cache[index + 1] = tHelper.getComputedTextLength() / 100;\n        }\n      }\n\n      return fontData.cache[index + 1] * size;\n    }\n\n    function getFontByName(name) {\n      var i = 0;\n      var len = (this || _global).fonts.length;\n\n      while (i < len) {\n        if ((this || _global).fonts[i].fName === name) {\n          return (this || _global).fonts[i];\n        }\n\n        i += 1;\n      }\n\n      return (this || _global).fonts[0];\n    }\n\n    function getCombinedCharacterCodes() {\n      return combinedCharacters;\n    }\n\n    function setIsLoaded() {\n      (this || _global).isLoaded = true;\n    }\n\n    var Font = function () {\n      (this || _global).fonts = [];\n      (this || _global).chars = null;\n      (this || _global).typekitLoaded = 0;\n      (this || _global).isLoaded = false;\n      (this || _global)._warned = false;\n      (this || _global).initTime = Date.now();\n      (this || _global).setIsLoadedBinded = (this || _global).setIsLoaded.bind(this || _global);\n      (this || _global).checkLoadedFontsBinded = (this || _global).checkLoadedFonts.bind(this || _global);\n    }; // TODO: for now I'm adding these methods to the Class and not the prototype. Think of a better way to implement it.\n\n\n    Font.getCombinedCharacterCodes = getCombinedCharacterCodes;\n    var fontPrototype = {\n      addChars: addChars,\n      addFonts: addFonts,\n      getCharData: getCharData,\n      getFontByName: getFontByName,\n      measureText: measureText,\n      checkLoadedFonts: checkLoadedFonts,\n      setIsLoaded: setIsLoaded\n    };\n    Font.prototype = fontPrototype;\n    return Font;\n  }();\n  /* global initialDefaultFrame, BezierFactory, degToRads, bez, createTypedArray */\n\n  /* exported PropertyFactory */\n\n\n  var PropertyFactory = function () {\n    var initFrame = initialDefaultFrame;\n    var mathAbs = Math.abs;\n\n    function interpolateValue(frameNum, caching) {\n      var offsetTime = (this || _global).offsetTime;\n      var newValue;\n\n      if ((this || _global).propType === \"multidimensional\") {\n        newValue = createTypedArray(\"float32\", (this || _global).pv.length);\n      }\n\n      var iterationIndex = caching.lastIndex;\n      var i = iterationIndex;\n      var len = (this || _global).keyframes.length - 1;\n      var flag = true;\n      var keyData;\n      var nextKeyData;\n\n      while (flag) {\n        keyData = (this || _global).keyframes[i];\n        nextKeyData = (this || _global).keyframes[i + 1];\n\n        if (i === len - 1 && frameNum >= nextKeyData.t - offsetTime) {\n          if (keyData.h) {\n            keyData = nextKeyData;\n          }\n\n          iterationIndex = 0;\n          break;\n        }\n\n        if (nextKeyData.t - offsetTime > frameNum) {\n          iterationIndex = i;\n          break;\n        }\n\n        if (i < len - 1) {\n          i += 1;\n        } else {\n          iterationIndex = 0;\n          flag = false;\n        }\n      }\n\n      var k;\n      var kLen;\n      var perc;\n      var jLen;\n      var j;\n      var fnc;\n      var nextKeyTime = nextKeyData.t - offsetTime;\n      var keyTime = keyData.t - offsetTime;\n      var endValue;\n\n      if (keyData.to) {\n        if (!keyData.bezierData) {\n          keyData.bezierData = bez.buildBezierData(keyData.s, nextKeyData.s || keyData.e, keyData.to, keyData.ti);\n        }\n\n        var bezierData = keyData.bezierData;\n\n        if (frameNum >= nextKeyTime || frameNum < keyTime) {\n          var ind = frameNum >= nextKeyTime ? bezierData.points.length - 1 : 0;\n          kLen = bezierData.points[ind].point.length;\n\n          for (k = 0; k < kLen; k += 1) {\n            newValue[k] = bezierData.points[ind].point[k];\n          } // caching._lastKeyframeIndex = -1;\n\n        } else {\n          if (keyData.__fnct) {\n            fnc = keyData.__fnct;\n          } else {\n            fnc = BezierFactory.getBezierEasing(keyData.o.x, keyData.o.y, keyData.i.x, keyData.i.y, keyData.n).get;\n            keyData.__fnct = fnc;\n          }\n\n          perc = fnc((frameNum - keyTime) / (nextKeyTime - keyTime));\n          var distanceInLine = bezierData.segmentLength * perc;\n          var segmentPerc;\n          var addedLength = caching.lastFrame < frameNum && caching._lastKeyframeIndex === i ? caching._lastAddedLength : 0;\n          j = caching.lastFrame < frameNum && caching._lastKeyframeIndex === i ? caching._lastPoint : 0;\n          flag = true;\n          jLen = bezierData.points.length;\n\n          while (flag) {\n            addedLength += bezierData.points[j].partialLength;\n\n            if (distanceInLine === 0 || perc === 0 || j === bezierData.points.length - 1) {\n              kLen = bezierData.points[j].point.length;\n\n              for (k = 0; k < kLen; k += 1) {\n                newValue[k] = bezierData.points[j].point[k];\n              }\n\n              break;\n            } else if (distanceInLine >= addedLength && distanceInLine < addedLength + bezierData.points[j + 1].partialLength) {\n              segmentPerc = (distanceInLine - addedLength) / bezierData.points[j + 1].partialLength;\n              kLen = bezierData.points[j].point.length;\n\n              for (k = 0; k < kLen; k += 1) {\n                newValue[k] = bezierData.points[j].point[k] + (bezierData.points[j + 1].point[k] - bezierData.points[j].point[k]) * segmentPerc;\n              }\n\n              break;\n            }\n\n            if (j < jLen - 1) {\n              j += 1;\n            } else {\n              flag = false;\n            }\n          }\n\n          caching._lastPoint = j;\n          caching._lastAddedLength = addedLength - bezierData.points[j].partialLength;\n          caching._lastKeyframeIndex = i;\n        }\n      } else {\n        var outX;\n        var outY;\n        var inX;\n        var inY;\n        var keyValue;\n        len = keyData.s.length;\n        endValue = nextKeyData.s || keyData.e;\n\n        if ((this || _global).sh && keyData.h !== 1) {\n          if (frameNum >= nextKeyTime) {\n            newValue[0] = endValue[0];\n            newValue[1] = endValue[1];\n            newValue[2] = endValue[2];\n          } else if (frameNum <= keyTime) {\n            newValue[0] = keyData.s[0];\n            newValue[1] = keyData.s[1];\n            newValue[2] = keyData.s[2];\n          } else {\n            var quatStart = createQuaternion(keyData.s);\n            var quatEnd = createQuaternion(endValue);\n            var time = (frameNum - keyTime) / (nextKeyTime - keyTime);\n            quaternionToEuler(newValue, slerp(quatStart, quatEnd, time));\n          }\n        } else {\n          for (i = 0; i < len; i += 1) {\n            if (keyData.h !== 1) {\n              if (frameNum >= nextKeyTime) {\n                perc = 1;\n              } else if (frameNum < keyTime) {\n                perc = 0;\n              } else {\n                if (keyData.o.x.constructor === Array) {\n                  if (!keyData.__fnct) {\n                    keyData.__fnct = [];\n                  }\n\n                  if (!keyData.__fnct[i]) {\n                    outX = typeof keyData.o.x[i] === \"undefined\" ? keyData.o.x[0] : keyData.o.x[i];\n                    outY = typeof keyData.o.y[i] === \"undefined\" ? keyData.o.y[0] : keyData.o.y[i];\n                    inX = typeof keyData.i.x[i] === \"undefined\" ? keyData.i.x[0] : keyData.i.x[i];\n                    inY = typeof keyData.i.y[i] === \"undefined\" ? keyData.i.y[0] : keyData.i.y[i];\n                    fnc = BezierFactory.getBezierEasing(outX, outY, inX, inY).get;\n                    keyData.__fnct[i] = fnc;\n                  } else {\n                    fnc = keyData.__fnct[i];\n                  }\n                } else if (!keyData.__fnct) {\n                  outX = keyData.o.x;\n                  outY = keyData.o.y;\n                  inX = keyData.i.x;\n                  inY = keyData.i.y;\n                  fnc = BezierFactory.getBezierEasing(outX, outY, inX, inY).get;\n                  keyData.__fnct = fnc;\n                } else {\n                  fnc = keyData.__fnct;\n                }\n\n                perc = fnc((frameNum - keyTime) / (nextKeyTime - keyTime));\n              }\n            }\n\n            endValue = nextKeyData.s || keyData.e;\n            keyValue = keyData.h === 1 ? keyData.s[i] : keyData.s[i] + (endValue[i] - keyData.s[i]) * perc;\n\n            if ((this || _global).propType === \"multidimensional\") {\n              newValue[i] = keyValue;\n            } else {\n              newValue = keyValue;\n            }\n          }\n        }\n      }\n\n      caching.lastIndex = iterationIndex;\n      return newValue;\n    } // based on @Toji's https://github.com/toji/gl-matrix/\n\n\n    function slerp(a, b, t) {\n      var out = [];\n      var ax = a[0];\n      var ay = a[1];\n      var az = a[2];\n      var aw = a[3];\n      var bx = b[0];\n      var by = b[1];\n      var bz = b[2];\n      var bw = b[3];\n      var omega;\n      var cosom;\n      var sinom;\n      var scale0;\n      var scale1;\n      cosom = ax * bx + ay * by + az * bz + aw * bw;\n\n      if (cosom < 0) {\n        cosom = -cosom;\n        bx = -bx;\n        by = -by;\n        bz = -bz;\n        bw = -bw;\n      }\n\n      if (1 - cosom > 0.000001) {\n        omega = Math.acos(cosom);\n        sinom = Math.sin(omega);\n        scale0 = Math.sin((1 - t) * omega) / sinom;\n        scale1 = Math.sin(t * omega) / sinom;\n      } else {\n        scale0 = 1 - t;\n        scale1 = t;\n      }\n\n      out[0] = scale0 * ax + scale1 * bx;\n      out[1] = scale0 * ay + scale1 * by;\n      out[2] = scale0 * az + scale1 * bz;\n      out[3] = scale0 * aw + scale1 * bw;\n      return out;\n    }\n\n    function quaternionToEuler(out, quat) {\n      var qx = quat[0];\n      var qy = quat[1];\n      var qz = quat[2];\n      var qw = quat[3];\n      var heading = Math.atan2(2 * qy * qw - 2 * qx * qz, 1 - 2 * qy * qy - 2 * qz * qz);\n      var attitude = Math.asin(2 * qx * qy + 2 * qz * qw);\n      var bank = Math.atan2(2 * qx * qw - 2 * qy * qz, 1 - 2 * qx * qx - 2 * qz * qz);\n      out[0] = heading / degToRads;\n      out[1] = attitude / degToRads;\n      out[2] = bank / degToRads;\n    }\n\n    function createQuaternion(values) {\n      var heading = values[0] * degToRads;\n      var attitude = values[1] * degToRads;\n      var bank = values[2] * degToRads;\n      var c1 = Math.cos(heading / 2);\n      var c2 = Math.cos(attitude / 2);\n      var c3 = Math.cos(bank / 2);\n      var s1 = Math.sin(heading / 2);\n      var s2 = Math.sin(attitude / 2);\n      var s3 = Math.sin(bank / 2);\n      var w = c1 * c2 * c3 - s1 * s2 * s3;\n      var x = s1 * s2 * c3 + c1 * c2 * s3;\n      var y = s1 * c2 * c3 + c1 * s2 * s3;\n      var z = c1 * s2 * c3 - s1 * c2 * s3;\n      return [x, y, z, w];\n    }\n\n    function getValueAtCurrentTime() {\n      var frameNum = (this || _global).comp.renderedFrame - (this || _global).offsetTime;\n      var initTime = (this || _global).keyframes[0].t - (this || _global).offsetTime;\n      var endTime = (this || _global).keyframes[(this || _global).keyframes.length - 1].t - (this || _global).offsetTime;\n\n      if (!(frameNum === (this || _global)._caching.lastFrame || (this || _global)._caching.lastFrame !== initFrame && ((this || _global)._caching.lastFrame >= endTime && frameNum >= endTime || (this || _global)._caching.lastFrame < initTime && frameNum < initTime))) {\n        if ((this || _global)._caching.lastFrame >= frameNum) {\n          (this || _global)._caching._lastKeyframeIndex = -1;\n          (this || _global)._caching.lastIndex = 0;\n        }\n\n        var renderResult = this.interpolateValue(frameNum, (this || _global)._caching);\n        (this || _global).pv = renderResult;\n      }\n\n      (this || _global)._caching.lastFrame = frameNum;\n      return (this || _global).pv;\n    }\n\n    function setVValue(val) {\n      var multipliedValue;\n\n      if ((this || _global).propType === \"unidimensional\") {\n        multipliedValue = val * (this || _global).mult;\n\n        if (mathAbs((this || _global).v - multipliedValue) > 0.00001) {\n          (this || _global).v = multipliedValue;\n          (this || _global)._mdf = true;\n        }\n      } else {\n        var i = 0;\n        var len = (this || _global).v.length;\n\n        while (i < len) {\n          multipliedValue = val[i] * (this || _global).mult;\n\n          if (mathAbs((this || _global).v[i] - multipliedValue) > 0.00001) {\n            (this || _global).v[i] = multipliedValue;\n            (this || _global)._mdf = true;\n          }\n\n          i += 1;\n        }\n      }\n    }\n\n    function processEffectsSequence() {\n      if ((this || _global).elem.globalData.frameId === (this || _global).frameId || !(this || _global).effectsSequence.length) {\n        return;\n      }\n\n      if ((this || _global).lock) {\n        this.setVValue((this || _global).pv);\n        return;\n      }\n\n      (this || _global).lock = true;\n      (this || _global)._mdf = (this || _global)._isFirstFrame;\n      var i;\n      var len = (this || _global).effectsSequence.length;\n      var finalValue = (this || _global).kf ? (this || _global).pv : (this || _global).data.k;\n\n      for (i = 0; i < len; i += 1) {\n        finalValue = (this || _global).effectsSequence[i](finalValue);\n      }\n\n      this.setVValue(finalValue);\n      (this || _global)._isFirstFrame = false;\n      (this || _global).lock = false;\n      (this || _global).frameId = (this || _global).elem.globalData.frameId;\n    }\n\n    function addEffect(effectFunction) {\n      (this || _global).effectsSequence.push(effectFunction);\n\n      (this || _global).container.addDynamicProperty(this || _global);\n    }\n\n    function ValueProperty(elem, data, mult, container) {\n      (this || _global).propType = \"unidimensional\";\n      (this || _global).mult = mult || 1;\n      (this || _global).data = data;\n      (this || _global).v = mult ? data.k * mult : data.k;\n      (this || _global).pv = data.k;\n      (this || _global)._mdf = false;\n      (this || _global).elem = elem;\n      (this || _global).container = container;\n      (this || _global).comp = elem.comp;\n      (this || _global).k = false;\n      (this || _global).kf = false;\n      (this || _global).vel = 0;\n      (this || _global).effectsSequence = [];\n      (this || _global)._isFirstFrame = true;\n      (this || _global).getValue = processEffectsSequence;\n      (this || _global).setVValue = setVValue;\n      (this || _global).addEffect = addEffect;\n    }\n\n    function MultiDimensionalProperty(elem, data, mult, container) {\n      (this || _global).propType = \"multidimensional\";\n      (this || _global).mult = mult || 1;\n      (this || _global).data = data;\n      (this || _global)._mdf = false;\n      (this || _global).elem = elem;\n      (this || _global).container = container;\n      (this || _global).comp = elem.comp;\n      (this || _global).k = false;\n      (this || _global).kf = false;\n      (this || _global).frameId = -1;\n      var i;\n      var len = data.k.length;\n      (this || _global).v = createTypedArray(\"float32\", len);\n      (this || _global).pv = createTypedArray(\"float32\", len);\n      (this || _global).vel = createTypedArray(\"float32\", len);\n\n      for (i = 0; i < len; i += 1) {\n        (this || _global).v[i] = data.k[i] * (this || _global).mult;\n        (this || _global).pv[i] = data.k[i];\n      }\n\n      (this || _global)._isFirstFrame = true;\n      (this || _global).effectsSequence = [];\n      (this || _global).getValue = processEffectsSequence;\n      (this || _global).setVValue = setVValue;\n      (this || _global).addEffect = addEffect;\n    }\n\n    function KeyframedValueProperty(elem, data, mult, container) {\n      (this || _global).propType = \"unidimensional\";\n      (this || _global).keyframes = data.k;\n      (this || _global).offsetTime = elem.data.st;\n      (this || _global).frameId = -1;\n      (this || _global)._caching = {\n        lastFrame: initFrame,\n        lastIndex: 0,\n        value: 0,\n        _lastKeyframeIndex: -1\n      };\n      (this || _global).k = true;\n      (this || _global).kf = true;\n      (this || _global).data = data;\n      (this || _global).mult = mult || 1;\n      (this || _global).elem = elem;\n      (this || _global).container = container;\n      (this || _global).comp = elem.comp;\n      (this || _global).v = initFrame;\n      (this || _global).pv = initFrame;\n      (this || _global)._isFirstFrame = true;\n      (this || _global).getValue = processEffectsSequence;\n      (this || _global).setVValue = setVValue;\n      (this || _global).interpolateValue = interpolateValue;\n      (this || _global).effectsSequence = [getValueAtCurrentTime.bind(this || _global)];\n      (this || _global).addEffect = addEffect;\n    }\n\n    function KeyframedMultidimensionalProperty(elem, data, mult, container) {\n      (this || _global).propType = \"multidimensional\";\n      var i;\n      var len = data.k.length;\n      var s;\n      var e;\n      var to;\n      var ti;\n\n      for (i = 0; i < len - 1; i += 1) {\n        if (data.k[i].to && data.k[i].s && data.k[i + 1] && data.k[i + 1].s) {\n          s = data.k[i].s;\n          e = data.k[i + 1].s;\n          to = data.k[i].to;\n          ti = data.k[i].ti;\n\n          if (s.length === 2 && !(s[0] === e[0] && s[1] === e[1]) && bez.pointOnLine2D(s[0], s[1], e[0], e[1], s[0] + to[0], s[1] + to[1]) && bez.pointOnLine2D(s[0], s[1], e[0], e[1], e[0] + ti[0], e[1] + ti[1]) || s.length === 3 && !(s[0] === e[0] && s[1] === e[1] && s[2] === e[2]) && bez.pointOnLine3D(s[0], s[1], s[2], e[0], e[1], e[2], s[0] + to[0], s[1] + to[1], s[2] + to[2]) && bez.pointOnLine3D(s[0], s[1], s[2], e[0], e[1], e[2], e[0] + ti[0], e[1] + ti[1], e[2] + ti[2])) {\n            data.k[i].to = null;\n            data.k[i].ti = null;\n          }\n\n          if (s[0] === e[0] && s[1] === e[1] && to[0] === 0 && to[1] === 0 && ti[0] === 0 && ti[1] === 0) {\n            if (s.length === 2 || s[2] === e[2] && to[2] === 0 && ti[2] === 0) {\n              data.k[i].to = null;\n              data.k[i].ti = null;\n            }\n          }\n        }\n      }\n\n      (this || _global).effectsSequence = [getValueAtCurrentTime.bind(this || _global)];\n      (this || _global).data = data;\n      (this || _global).keyframes = data.k;\n      (this || _global).offsetTime = elem.data.st;\n      (this || _global).k = true;\n      (this || _global).kf = true;\n      (this || _global)._isFirstFrame = true;\n      (this || _global).mult = mult || 1;\n      (this || _global).elem = elem;\n      (this || _global).container = container;\n      (this || _global).comp = elem.comp;\n      (this || _global).getValue = processEffectsSequence;\n      (this || _global).setVValue = setVValue;\n      (this || _global).interpolateValue = interpolateValue;\n      (this || _global).frameId = -1;\n      var arrLen = data.k[0].s.length;\n      (this || _global).v = createTypedArray(\"float32\", arrLen);\n      (this || _global).pv = createTypedArray(\"float32\", arrLen);\n\n      for (i = 0; i < arrLen; i += 1) {\n        (this || _global).v[i] = initFrame;\n        (this || _global).pv[i] = initFrame;\n      }\n\n      (this || _global)._caching = {\n        lastFrame: initFrame,\n        lastIndex: 0,\n        value: createTypedArray(\"float32\", arrLen)\n      };\n      (this || _global).addEffect = addEffect;\n    }\n\n    function getProp(elem, data, type, mult, container) {\n      var p;\n\n      if (!data.k.length) {\n        p = new ValueProperty(elem, data, mult, container);\n      } else if (typeof data.k[0] === \"number\") {\n        p = new MultiDimensionalProperty(elem, data, mult, container);\n      } else {\n        switch (type) {\n          case 0:\n            p = new KeyframedValueProperty(elem, data, mult, container);\n            break;\n\n          case 1:\n            p = new KeyframedMultidimensionalProperty(elem, data, mult, container);\n            break;\n\n          default:\n            break;\n        }\n      }\n\n      if (p.effectsSequence.length) {\n        container.addDynamicProperty(p);\n      }\n\n      return p;\n    }\n\n    var ob = {\n      getProp: getProp\n    };\n    return ob;\n  }();\n  /* global Matrix, degToRads, PropertyFactory, extendPrototype, DynamicPropertyContainer */\n\n  /* exported TransformPropertyFactory */\n\n\n  var TransformPropertyFactory = function () {\n    var defaultVector = [0, 0];\n\n    function applyToMatrix(mat) {\n      var _mdf = (this || _global)._mdf;\n      this.iterateDynamicProperties();\n      (this || _global)._mdf = (this || _global)._mdf || _mdf;\n\n      if ((this || _global).a) {\n        mat.translate(-(this || _global).a.v[0], -(this || _global).a.v[1], (this || _global).a.v[2]);\n      }\n\n      if ((this || _global).s) {\n        mat.scale((this || _global).s.v[0], (this || _global).s.v[1], (this || _global).s.v[2]);\n      }\n\n      if ((this || _global).sk) {\n        mat.skewFromAxis(-(this || _global).sk.v, (this || _global).sa.v);\n      }\n\n      if ((this || _global).r) {\n        mat.rotate(-(this || _global).r.v);\n      } else {\n        mat.rotateZ(-(this || _global).rz.v).rotateY((this || _global).ry.v).rotateX((this || _global).rx.v).rotateZ(-(this || _global).or.v[2]).rotateY((this || _global).or.v[1]).rotateX((this || _global).or.v[0]);\n      }\n\n      if ((this || _global).data.p.s) {\n        if ((this || _global).data.p.z) {\n          mat.translate((this || _global).px.v, (this || _global).py.v, -(this || _global).pz.v);\n        } else {\n          mat.translate((this || _global).px.v, (this || _global).py.v, 0);\n        }\n      } else {\n        mat.translate((this || _global).p.v[0], (this || _global).p.v[1], -(this || _global).p.v[2]);\n      }\n    }\n\n    function processKeys(forceRender) {\n      if ((this || _global).elem.globalData.frameId === (this || _global).frameId) {\n        return;\n      }\n\n      if ((this || _global)._isDirty) {\n        this.precalculateMatrix();\n        (this || _global)._isDirty = false;\n      }\n\n      this.iterateDynamicProperties();\n\n      if ((this || _global)._mdf || forceRender) {\n        var frameRate;\n\n        (this || _global).v.cloneFromProps((this || _global).pre.props);\n\n        if ((this || _global).appliedTransformations < 1) {\n          (this || _global).v.translate(-(this || _global).a.v[0], -(this || _global).a.v[1], (this || _global).a.v[2]);\n        }\n\n        if ((this || _global).appliedTransformations < 2) {\n          (this || _global).v.scale((this || _global).s.v[0], (this || _global).s.v[1], (this || _global).s.v[2]);\n        }\n\n        if ((this || _global).sk && (this || _global).appliedTransformations < 3) {\n          (this || _global).v.skewFromAxis(-(this || _global).sk.v, (this || _global).sa.v);\n        }\n\n        if ((this || _global).r && (this || _global).appliedTransformations < 4) {\n          (this || _global).v.rotate(-(this || _global).r.v);\n        } else if (!(this || _global).r && (this || _global).appliedTransformations < 4) {\n          (this || _global).v.rotateZ(-(this || _global).rz.v).rotateY((this || _global).ry.v).rotateX((this || _global).rx.v).rotateZ(-(this || _global).or.v[2]).rotateY((this || _global).or.v[1]).rotateX((this || _global).or.v[0]);\n        }\n\n        if ((this || _global).autoOriented) {\n          var v1;\n          var v2;\n          frameRate = (this || _global).elem.globalData.frameRate;\n\n          if ((this || _global).p && (this || _global).p.keyframes && (this || _global).p.getValueAtTime) {\n            if ((this || _global).p._caching.lastFrame + (this || _global).p.offsetTime <= (this || _global).p.keyframes[0].t) {\n              v1 = (this || _global).p.getValueAtTime(((this || _global).p.keyframes[0].t + 0.01) / frameRate, 0);\n              v2 = (this || _global).p.getValueAtTime((this || _global).p.keyframes[0].t / frameRate, 0);\n            } else if ((this || _global).p._caching.lastFrame + (this || _global).p.offsetTime >= (this || _global).p.keyframes[(this || _global).p.keyframes.length - 1].t) {\n              v1 = (this || _global).p.getValueAtTime((this || _global).p.keyframes[(this || _global).p.keyframes.length - 1].t / frameRate, 0);\n              v2 = (this || _global).p.getValueAtTime(((this || _global).p.keyframes[(this || _global).p.keyframes.length - 1].t - 0.05) / frameRate, 0);\n            } else {\n              v1 = (this || _global).p.pv;\n              v2 = (this || _global).p.getValueAtTime(((this || _global).p._caching.lastFrame + (this || _global).p.offsetTime - 0.01) / frameRate, (this || _global).p.offsetTime);\n            }\n          } else if ((this || _global).px && (this || _global).px.keyframes && (this || _global).py.keyframes && (this || _global).px.getValueAtTime && (this || _global).py.getValueAtTime) {\n            v1 = [];\n            v2 = [];\n            var px = (this || _global).px;\n            var py = (this || _global).py;\n\n            if (px._caching.lastFrame + px.offsetTime <= px.keyframes[0].t) {\n              v1[0] = px.getValueAtTime((px.keyframes[0].t + 0.01) / frameRate, 0);\n              v1[1] = py.getValueAtTime((py.keyframes[0].t + 0.01) / frameRate, 0);\n              v2[0] = px.getValueAtTime(px.keyframes[0].t / frameRate, 0);\n              v2[1] = py.getValueAtTime(py.keyframes[0].t / frameRate, 0);\n            } else if (px._caching.lastFrame + px.offsetTime >= px.keyframes[px.keyframes.length - 1].t) {\n              v1[0] = px.getValueAtTime(px.keyframes[px.keyframes.length - 1].t / frameRate, 0);\n              v1[1] = py.getValueAtTime(py.keyframes[py.keyframes.length - 1].t / frameRate, 0);\n              v2[0] = px.getValueAtTime((px.keyframes[px.keyframes.length - 1].t - 0.01) / frameRate, 0);\n              v2[1] = py.getValueAtTime((py.keyframes[py.keyframes.length - 1].t - 0.01) / frameRate, 0);\n            } else {\n              v1 = [px.pv, py.pv];\n              v2[0] = px.getValueAtTime((px._caching.lastFrame + px.offsetTime - 0.01) / frameRate, px.offsetTime);\n              v2[1] = py.getValueAtTime((py._caching.lastFrame + py.offsetTime - 0.01) / frameRate, py.offsetTime);\n            }\n          } else {\n            v2 = defaultVector;\n            v1 = v2;\n          }\n\n          (this || _global).v.rotate(-Math.atan2(v1[1] - v2[1], v1[0] - v2[0]));\n        }\n\n        if ((this || _global).data.p && (this || _global).data.p.s) {\n          if ((this || _global).data.p.z) {\n            (this || _global).v.translate((this || _global).px.v, (this || _global).py.v, -(this || _global).pz.v);\n          } else {\n            (this || _global).v.translate((this || _global).px.v, (this || _global).py.v, 0);\n          }\n        } else {\n          (this || _global).v.translate((this || _global).p.v[0], (this || _global).p.v[1], -(this || _global).p.v[2]);\n        }\n      }\n\n      (this || _global).frameId = (this || _global).elem.globalData.frameId;\n    }\n\n    function precalculateMatrix() {\n      if (!(this || _global).a.k) {\n        (this || _global).pre.translate(-(this || _global).a.v[0], -(this || _global).a.v[1], (this || _global).a.v[2]);\n\n        (this || _global).appliedTransformations = 1;\n      } else {\n        return;\n      }\n\n      if (!(this || _global).s.effectsSequence.length) {\n        (this || _global).pre.scale((this || _global).s.v[0], (this || _global).s.v[1], (this || _global).s.v[2]);\n\n        (this || _global).appliedTransformations = 2;\n      } else {\n        return;\n      }\n\n      if ((this || _global).sk) {\n        if (!(this || _global).sk.effectsSequence.length && !(this || _global).sa.effectsSequence.length) {\n          (this || _global).pre.skewFromAxis(-(this || _global).sk.v, (this || _global).sa.v);\n\n          (this || _global).appliedTransformations = 3;\n        } else {\n          return;\n        }\n      }\n\n      if ((this || _global).r) {\n        if (!(this || _global).r.effectsSequence.length) {\n          (this || _global).pre.rotate(-(this || _global).r.v);\n\n          (this || _global).appliedTransformations = 4;\n        }\n      } else if (!(this || _global).rz.effectsSequence.length && !(this || _global).ry.effectsSequence.length && !(this || _global).rx.effectsSequence.length && !(this || _global).or.effectsSequence.length) {\n        (this || _global).pre.rotateZ(-(this || _global).rz.v).rotateY((this || _global).ry.v).rotateX((this || _global).rx.v).rotateZ(-(this || _global).or.v[2]).rotateY((this || _global).or.v[1]).rotateX((this || _global).or.v[0]);\n\n        (this || _global).appliedTransformations = 4;\n      }\n    }\n\n    function autoOrient() {//\n      // var prevP = this.getValueAtTime();\n    }\n\n    function addDynamicProperty(prop) {\n      this._addDynamicProperty(prop);\n\n      (this || _global).elem.addDynamicProperty(prop);\n\n      (this || _global)._isDirty = true;\n    }\n\n    function TransformProperty(elem, data, container) {\n      (this || _global).elem = elem;\n      (this || _global).frameId = -1;\n      (this || _global).propType = \"transform\";\n      (this || _global).data = data;\n      (this || _global).v = new Matrix(); // Precalculated matrix with non animated properties\n\n      (this || _global).pre = new Matrix();\n      (this || _global).appliedTransformations = 0;\n      this.initDynamicPropertyContainer(container || elem);\n\n      if (data.p && data.p.s) {\n        (this || _global).px = PropertyFactory.getProp(elem, data.p.x, 0, 0, this || _global);\n        (this || _global).py = PropertyFactory.getProp(elem, data.p.y, 0, 0, this || _global);\n\n        if (data.p.z) {\n          (this || _global).pz = PropertyFactory.getProp(elem, data.p.z, 0, 0, this || _global);\n        }\n      } else {\n        (this || _global).p = PropertyFactory.getProp(elem, data.p || {\n          k: [0, 0, 0]\n        }, 1, 0, this || _global);\n      }\n\n      if (data.rx) {\n        (this || _global).rx = PropertyFactory.getProp(elem, data.rx, 0, degToRads, this || _global);\n        (this || _global).ry = PropertyFactory.getProp(elem, data.ry, 0, degToRads, this || _global);\n        (this || _global).rz = PropertyFactory.getProp(elem, data.rz, 0, degToRads, this || _global);\n\n        if (data.or.k[0].ti) {\n          var i;\n          var len = data.or.k.length;\n\n          for (i = 0; i < len; i += 1) {\n            data.or.k[i].to = null;\n            data.or.k[i].ti = null;\n          }\n        }\n\n        (this || _global).or = PropertyFactory.getProp(elem, data.or, 1, degToRads, this || _global); // sh Indicates it needs to be capped between -180 and 180\n\n        (this || _global).or.sh = true;\n      } else {\n        (this || _global).r = PropertyFactory.getProp(elem, data.r || {\n          k: 0\n        }, 0, degToRads, this || _global);\n      }\n\n      if (data.sk) {\n        (this || _global).sk = PropertyFactory.getProp(elem, data.sk, 0, degToRads, this || _global);\n        (this || _global).sa = PropertyFactory.getProp(elem, data.sa, 0, degToRads, this || _global);\n      }\n\n      (this || _global).a = PropertyFactory.getProp(elem, data.a || {\n        k: [0, 0, 0]\n      }, 1, 0, this || _global);\n      (this || _global).s = PropertyFactory.getProp(elem, data.s || {\n        k: [100, 100, 100]\n      }, 1, 0.01, this || _global); // Opacity is not part of the transform properties, that's why it won't use this.dynamicProperties. That way transforms won't get updated if opacity changes.\n\n      if (data.o) {\n        (this || _global).o = PropertyFactory.getProp(elem, data.o, 0, 0.01, elem);\n      } else {\n        (this || _global).o = {\n          _mdf: false,\n          v: 1\n        };\n      }\n\n      (this || _global)._isDirty = true;\n\n      if (!(this || _global).dynamicProperties.length) {\n        this.getValue(true);\n      }\n    }\n\n    TransformProperty.prototype = {\n      applyToMatrix: applyToMatrix,\n      getValue: processKeys,\n      precalculateMatrix: precalculateMatrix,\n      autoOrient: autoOrient\n    };\n    extendPrototype([DynamicPropertyContainer], TransformProperty);\n    TransformProperty.prototype.addDynamicProperty = addDynamicProperty;\n    TransformProperty.prototype._addDynamicProperty = DynamicPropertyContainer.prototype.addDynamicProperty;\n\n    function getTransformProperty(elem, data, container) {\n      return new TransformProperty(elem, data, container);\n    }\n\n    return {\n      getTransformProperty: getTransformProperty\n    };\n  }();\n  /* global createSizedArray, createSizedArray, pointPool */\n\n\n  function ShapePath() {\n    (this || _global).c = false;\n    (this || _global)._length = 0;\n    (this || _global)._maxLength = 8;\n    (this || _global).v = createSizedArray((this || _global)._maxLength);\n    (this || _global).o = createSizedArray((this || _global)._maxLength);\n    (this || _global).i = createSizedArray((this || _global)._maxLength);\n  }\n\n  ShapePath.prototype.setPathData = function (closed, len) {\n    (this || _global).c = closed;\n    this.setLength(len);\n    var i = 0;\n\n    while (i < len) {\n      (this || _global).v[i] = pointPool.newElement();\n      (this || _global).o[i] = pointPool.newElement();\n      (this || _global).i[i] = pointPool.newElement();\n      i += 1;\n    }\n  };\n\n  ShapePath.prototype.setLength = function (len) {\n    while ((this || _global)._maxLength < len) {\n      this.doubleArrayLength();\n    }\n\n    (this || _global)._length = len;\n  };\n\n  ShapePath.prototype.doubleArrayLength = function () {\n    (this || _global).v = (this || _global).v.concat(createSizedArray((this || _global)._maxLength));\n    (this || _global).i = (this || _global).i.concat(createSizedArray((this || _global)._maxLength));\n    (this || _global).o = (this || _global).o.concat(createSizedArray((this || _global)._maxLength));\n    (this || _global)._maxLength *= 2;\n  };\n\n  ShapePath.prototype.setXYAt = function (x, y, type, pos, replace) {\n    var arr;\n    (this || _global)._length = Math.max((this || _global)._length, pos + 1);\n\n    if ((this || _global)._length >= (this || _global)._maxLength) {\n      this.doubleArrayLength();\n    }\n\n    switch (type) {\n      case \"v\":\n        arr = (this || _global).v;\n        break;\n\n      case \"i\":\n        arr = (this || _global).i;\n        break;\n\n      case \"o\":\n        arr = (this || _global).o;\n        break;\n\n      default:\n        arr = [];\n        break;\n    }\n\n    if (!arr[pos] || arr[pos] && !replace) {\n      arr[pos] = pointPool.newElement();\n    }\n\n    arr[pos][0] = x;\n    arr[pos][1] = y;\n  };\n\n  ShapePath.prototype.setTripleAt = function (vX, vY, oX, oY, iX, iY, pos, replace) {\n    this.setXYAt(vX, vY, \"v\", pos, replace);\n    this.setXYAt(oX, oY, \"o\", pos, replace);\n    this.setXYAt(iX, iY, \"i\", pos, replace);\n  };\n\n  ShapePath.prototype.reverse = function () {\n    var newPath = new ShapePath();\n    newPath.setPathData((this || _global).c, (this || _global)._length);\n    var vertices = (this || _global).v;\n    var outPoints = (this || _global).o;\n    var inPoints = (this || _global).i;\n    var init = 0;\n\n    if ((this || _global).c) {\n      newPath.setTripleAt(vertices[0][0], vertices[0][1], inPoints[0][0], inPoints[0][1], outPoints[0][0], outPoints[0][1], 0, false);\n      init = 1;\n    }\n\n    var cnt = (this || _global)._length - 1;\n    var len = (this || _global)._length;\n    var i;\n\n    for (i = init; i < len; i += 1) {\n      newPath.setTripleAt(vertices[cnt][0], vertices[cnt][1], inPoints[cnt][0], inPoints[cnt][1], outPoints[cnt][0], outPoints[cnt][1], i, false);\n      cnt -= 1;\n    }\n\n    return newPath;\n  };\n  /* global extendPrototype, roundCorner, BezierFactory, shapePool, degToRads,\r\n    shapeCollectionPool, PropertyFactory, bmMin, DynamicPropertyContainer */\n\n  /* exported ShapePropertyFactory */\n\n\n  var ShapePropertyFactory = function () {\n    var initFrame = -999999;\n\n    function interpolateShape(frameNum, previousValue, caching) {\n      var iterationIndex = caching.lastIndex;\n      var keyPropS;\n      var keyPropE;\n      var isHold;\n      var j;\n      var k;\n      var jLen;\n      var kLen;\n      var perc;\n      var vertexValue;\n      var kf = (this || _global).keyframes;\n\n      if (frameNum < kf[0].t - (this || _global).offsetTime) {\n        keyPropS = kf[0].s[0];\n        isHold = true;\n        iterationIndex = 0;\n      } else if (frameNum >= kf[kf.length - 1].t - (this || _global).offsetTime) {\n        keyPropS = kf[kf.length - 1].s ? kf[kf.length - 1].s[0] : kf[kf.length - 2].e[0];\n        /* if(kf[kf.length - 1].s){\r\n                  keyPropS = kf[kf.length - 1].s[0];\r\n              }else{\r\n                  keyPropS = kf[kf.length - 2].e[0];\r\n              } */\n\n        isHold = true;\n      } else {\n        var i = iterationIndex;\n        var len = kf.length - 1;\n        var flag = true;\n        var keyData;\n        var nextKeyData;\n\n        while (flag) {\n          keyData = kf[i];\n          nextKeyData = kf[i + 1];\n\n          if (nextKeyData.t - (this || _global).offsetTime > frameNum) {\n            break;\n          }\n\n          if (i < len - 1) {\n            i += 1;\n          } else {\n            flag = false;\n          }\n        }\n\n        isHold = keyData.h === 1;\n        iterationIndex = i;\n\n        if (!isHold) {\n          if (frameNum >= nextKeyData.t - (this || _global).offsetTime) {\n            perc = 1;\n          } else if (frameNum < keyData.t - (this || _global).offsetTime) {\n            perc = 0;\n          } else {\n            var fnc;\n\n            if (keyData.__fnct) {\n              fnc = keyData.__fnct;\n            } else {\n              fnc = BezierFactory.getBezierEasing(keyData.o.x, keyData.o.y, keyData.i.x, keyData.i.y).get;\n              keyData.__fnct = fnc;\n            }\n\n            perc = fnc((frameNum - (keyData.t - (this || _global).offsetTime)) / (nextKeyData.t - (this || _global).offsetTime - (keyData.t - (this || _global).offsetTime)));\n          }\n\n          keyPropE = nextKeyData.s ? nextKeyData.s[0] : keyData.e[0];\n        }\n\n        keyPropS = keyData.s[0];\n      }\n\n      jLen = previousValue._length;\n      kLen = keyPropS.i[0].length;\n      caching.lastIndex = iterationIndex;\n\n      for (j = 0; j < jLen; j += 1) {\n        for (k = 0; k < kLen; k += 1) {\n          vertexValue = isHold ? keyPropS.i[j][k] : keyPropS.i[j][k] + (keyPropE.i[j][k] - keyPropS.i[j][k]) * perc;\n          previousValue.i[j][k] = vertexValue;\n          vertexValue = isHold ? keyPropS.o[j][k] : keyPropS.o[j][k] + (keyPropE.o[j][k] - keyPropS.o[j][k]) * perc;\n          previousValue.o[j][k] = vertexValue;\n          vertexValue = isHold ? keyPropS.v[j][k] : keyPropS.v[j][k] + (keyPropE.v[j][k] - keyPropS.v[j][k]) * perc;\n          previousValue.v[j][k] = vertexValue;\n        }\n      }\n    }\n\n    function interpolateShapeCurrentTime() {\n      var frameNum = (this || _global).comp.renderedFrame - (this || _global).offsetTime;\n      var initTime = (this || _global).keyframes[0].t - (this || _global).offsetTime;\n      var endTime = (this || _global).keyframes[(this || _global).keyframes.length - 1].t - (this || _global).offsetTime;\n      var lastFrame = (this || _global)._caching.lastFrame;\n\n      if (!(lastFrame !== initFrame && (lastFrame < initTime && frameNum < initTime || lastFrame > endTime && frameNum > endTime))) {\n        /// /\n        (this || _global)._caching.lastIndex = lastFrame < frameNum ? (this || _global)._caching.lastIndex : 0;\n        this.interpolateShape(frameNum, (this || _global).pv, (this || _global)._caching); /// /\n      }\n\n      (this || _global)._caching.lastFrame = frameNum;\n      return (this || _global).pv;\n    }\n\n    function resetShape() {\n      (this || _global).paths = (this || _global).localShapeCollection;\n    }\n\n    function shapesEqual(shape1, shape2) {\n      if (shape1._length !== shape2._length || shape1.c !== shape2.c) {\n        return false;\n      }\n\n      var i;\n      var len = shape1._length;\n\n      for (i = 0; i < len; i += 1) {\n        if (shape1.v[i][0] !== shape2.v[i][0] || shape1.v[i][1] !== shape2.v[i][1] || shape1.o[i][0] !== shape2.o[i][0] || shape1.o[i][1] !== shape2.o[i][1] || shape1.i[i][0] !== shape2.i[i][0] || shape1.i[i][1] !== shape2.i[i][1]) {\n          return false;\n        }\n      }\n\n      return true;\n    }\n\n    function setVValue(newPath) {\n      if (!shapesEqual((this || _global).v, newPath)) {\n        (this || _global).v = shapePool.clone(newPath);\n\n        (this || _global).localShapeCollection.releaseShapes();\n\n        (this || _global).localShapeCollection.addShape((this || _global).v);\n\n        (this || _global)._mdf = true;\n        (this || _global).paths = (this || _global).localShapeCollection;\n      }\n    }\n\n    function processEffectsSequence() {\n      if ((this || _global).elem.globalData.frameId === (this || _global).frameId) {\n        return;\n      }\n\n      if (!(this || _global).effectsSequence.length) {\n        (this || _global)._mdf = false;\n        return;\n      }\n\n      if ((this || _global).lock) {\n        this.setVValue((this || _global).pv);\n        return;\n      }\n\n      (this || _global).lock = true;\n      (this || _global)._mdf = false;\n      var finalValue;\n\n      if ((this || _global).kf) {\n        finalValue = (this || _global).pv;\n      } else if ((this || _global).data.ks) {\n        finalValue = (this || _global).data.ks.k;\n      } else {\n        finalValue = (this || _global).data.pt.k;\n      }\n\n      var i;\n      var len = (this || _global).effectsSequence.length;\n\n      for (i = 0; i < len; i += 1) {\n        finalValue = (this || _global).effectsSequence[i](finalValue);\n      }\n\n      this.setVValue(finalValue);\n      (this || _global).lock = false;\n      (this || _global).frameId = (this || _global).elem.globalData.frameId;\n    }\n\n    function ShapeProperty(elem, data, type) {\n      (this || _global).propType = \"shape\";\n      (this || _global).comp = elem.comp;\n      (this || _global).container = elem;\n      (this || _global).elem = elem;\n      (this || _global).data = data;\n      (this || _global).k = false;\n      (this || _global).kf = false;\n      (this || _global)._mdf = false;\n      var pathData = type === 3 ? data.pt.k : data.ks.k;\n      (this || _global).v = shapePool.clone(pathData);\n      (this || _global).pv = shapePool.clone((this || _global).v);\n      (this || _global).localShapeCollection = shapeCollectionPool.newShapeCollection();\n      (this || _global).paths = (this || _global).localShapeCollection;\n\n      (this || _global).paths.addShape((this || _global).v);\n\n      (this || _global).reset = resetShape;\n      (this || _global).effectsSequence = [];\n    }\n\n    function addEffect(effectFunction) {\n      (this || _global).effectsSequence.push(effectFunction);\n\n      (this || _global).container.addDynamicProperty(this || _global);\n    }\n\n    ShapeProperty.prototype.interpolateShape = interpolateShape;\n    ShapeProperty.prototype.getValue = processEffectsSequence;\n    ShapeProperty.prototype.setVValue = setVValue;\n    ShapeProperty.prototype.addEffect = addEffect;\n\n    function KeyframedShapeProperty(elem, data, type) {\n      (this || _global).propType = \"shape\";\n      (this || _global).comp = elem.comp;\n      (this || _global).elem = elem;\n      (this || _global).container = elem;\n      (this || _global).offsetTime = elem.data.st;\n      (this || _global).keyframes = type === 3 ? data.pt.k : data.ks.k;\n      (this || _global).k = true;\n      (this || _global).kf = true;\n      var len = (this || _global).keyframes[0].s[0].i.length;\n      (this || _global).v = shapePool.newElement();\n\n      (this || _global).v.setPathData((this || _global).keyframes[0].s[0].c, len);\n\n      (this || _global).pv = shapePool.clone((this || _global).v);\n      (this || _global).localShapeCollection = shapeCollectionPool.newShapeCollection();\n      (this || _global).paths = (this || _global).localShapeCollection;\n\n      (this || _global).paths.addShape((this || _global).v);\n\n      (this || _global).lastFrame = initFrame;\n      (this || _global).reset = resetShape;\n      (this || _global)._caching = {\n        lastFrame: initFrame,\n        lastIndex: 0\n      };\n      (this || _global).effectsSequence = [interpolateShapeCurrentTime.bind(this || _global)];\n    }\n\n    KeyframedShapeProperty.prototype.getValue = processEffectsSequence;\n    KeyframedShapeProperty.prototype.interpolateShape = interpolateShape;\n    KeyframedShapeProperty.prototype.setVValue = setVValue;\n    KeyframedShapeProperty.prototype.addEffect = addEffect;\n\n    var EllShapeProperty = function () {\n      var cPoint = roundCorner;\n\n      function EllShapePropertyFactory(elem, data) {\n        /* this.v = {\r\n                  v: createSizedArray(4),\r\n                  i: createSizedArray(4),\r\n                  o: createSizedArray(4),\r\n                  c: true\r\n              }; */\n        (this || _global).v = shapePool.newElement();\n\n        (this || _global).v.setPathData(true, 4);\n\n        (this || _global).localShapeCollection = shapeCollectionPool.newShapeCollection();\n        (this || _global).paths = (this || _global).localShapeCollection;\n\n        (this || _global).localShapeCollection.addShape((this || _global).v);\n\n        (this || _global).d = data.d;\n        (this || _global).elem = elem;\n        (this || _global).comp = elem.comp;\n        (this || _global).frameId = -1;\n        this.initDynamicPropertyContainer(elem);\n        (this || _global).p = PropertyFactory.getProp(elem, data.p, 1, 0, this || _global);\n        (this || _global).s = PropertyFactory.getProp(elem, data.s, 1, 0, this || _global);\n\n        if ((this || _global).dynamicProperties.length) {\n          (this || _global).k = true;\n        } else {\n          (this || _global).k = false;\n          this.convertEllToPath();\n        }\n      }\n\n      EllShapePropertyFactory.prototype = {\n        reset: resetShape,\n        getValue: function () {\n          if ((this || _global).elem.globalData.frameId === (this || _global).frameId) {\n            return;\n          }\n\n          (this || _global).frameId = (this || _global).elem.globalData.frameId;\n          this.iterateDynamicProperties();\n\n          if ((this || _global)._mdf) {\n            this.convertEllToPath();\n          }\n        },\n        convertEllToPath: function () {\n          var p0 = (this || _global).p.v[0];\n          var p1 = (this || _global).p.v[1];\n          var s0 = (this || _global).s.v[0] / 2;\n          var s1 = (this || _global).s.v[1] / 2;\n\n          var _cw = (this || _global).d !== 3;\n\n          var _v = (this || _global).v;\n          _v.v[0][0] = p0;\n          _v.v[0][1] = p1 - s1;\n          _v.v[1][0] = _cw ? p0 + s0 : p0 - s0;\n          _v.v[1][1] = p1;\n          _v.v[2][0] = p0;\n          _v.v[2][1] = p1 + s1;\n          _v.v[3][0] = _cw ? p0 - s0 : p0 + s0;\n          _v.v[3][1] = p1;\n          _v.i[0][0] = _cw ? p0 - s0 * cPoint : p0 + s0 * cPoint;\n          _v.i[0][1] = p1 - s1;\n          _v.i[1][0] = _cw ? p0 + s0 : p0 - s0;\n          _v.i[1][1] = p1 - s1 * cPoint;\n          _v.i[2][0] = _cw ? p0 + s0 * cPoint : p0 - s0 * cPoint;\n          _v.i[2][1] = p1 + s1;\n          _v.i[3][0] = _cw ? p0 - s0 : p0 + s0;\n          _v.i[3][1] = p1 + s1 * cPoint;\n          _v.o[0][0] = _cw ? p0 + s0 * cPoint : p0 - s0 * cPoint;\n          _v.o[0][1] = p1 - s1;\n          _v.o[1][0] = _cw ? p0 + s0 : p0 - s0;\n          _v.o[1][1] = p1 + s1 * cPoint;\n          _v.o[2][0] = _cw ? p0 - s0 * cPoint : p0 + s0 * cPoint;\n          _v.o[2][1] = p1 + s1;\n          _v.o[3][0] = _cw ? p0 - s0 : p0 + s0;\n          _v.o[3][1] = p1 - s1 * cPoint;\n        }\n      };\n      extendPrototype([DynamicPropertyContainer], EllShapePropertyFactory);\n      return EllShapePropertyFactory;\n    }();\n\n    var StarShapeProperty = function () {\n      function StarShapePropertyFactory(elem, data) {\n        (this || _global).v = shapePool.newElement();\n\n        (this || _global).v.setPathData(true, 0);\n\n        (this || _global).elem = elem;\n        (this || _global).comp = elem.comp;\n        (this || _global).data = data;\n        (this || _global).frameId = -1;\n        (this || _global).d = data.d;\n        this.initDynamicPropertyContainer(elem);\n\n        if (data.sy === 1) {\n          (this || _global).ir = PropertyFactory.getProp(elem, data.ir, 0, 0, this || _global);\n          (this || _global).is = PropertyFactory.getProp(elem, data.is, 0, 0.01, this || _global);\n          (this || _global).convertToPath = (this || _global).convertStarToPath;\n        } else {\n          (this || _global).convertToPath = (this || _global).convertPolygonToPath;\n        }\n\n        (this || _global).pt = PropertyFactory.getProp(elem, data.pt, 0, 0, this || _global);\n        (this || _global).p = PropertyFactory.getProp(elem, data.p, 1, 0, this || _global);\n        (this || _global).r = PropertyFactory.getProp(elem, data.r, 0, degToRads, this || _global);\n        (this || _global).or = PropertyFactory.getProp(elem, data.or, 0, 0, this || _global);\n        (this || _global).os = PropertyFactory.getProp(elem, data.os, 0, 0.01, this || _global);\n        (this || _global).localShapeCollection = shapeCollectionPool.newShapeCollection();\n\n        (this || _global).localShapeCollection.addShape((this || _global).v);\n\n        (this || _global).paths = (this || _global).localShapeCollection;\n\n        if ((this || _global).dynamicProperties.length) {\n          (this || _global).k = true;\n        } else {\n          (this || _global).k = false;\n          this.convertToPath();\n        }\n      }\n\n      StarShapePropertyFactory.prototype = {\n        reset: resetShape,\n        getValue: function () {\n          if ((this || _global).elem.globalData.frameId === (this || _global).frameId) {\n            return;\n          }\n\n          (this || _global).frameId = (this || _global).elem.globalData.frameId;\n          this.iterateDynamicProperties();\n\n          if ((this || _global)._mdf) {\n            this.convertToPath();\n          }\n        },\n        convertStarToPath: function () {\n          var numPts = Math.floor((this || _global).pt.v) * 2;\n          var angle = Math.PI * 2 / numPts;\n          /* this.v.v.length = numPts;\r\n                  this.v.i.length = numPts;\r\n                  this.v.o.length = numPts; */\n\n          var longFlag = true;\n          var longRad = (this || _global).or.v;\n          var shortRad = (this || _global).ir.v;\n          var longRound = (this || _global).os.v;\n          var shortRound = (this || _global).is.v;\n          var longPerimSegment = 2 * Math.PI * longRad / (numPts * 2);\n          var shortPerimSegment = 2 * Math.PI * shortRad / (numPts * 2);\n          var i;\n          var rad;\n          var roundness;\n          var perimSegment;\n          var currentAng = -Math.PI / 2;\n          currentAng += (this || _global).r.v;\n          var dir = (this || _global).data.d === 3 ? -1 : 1;\n          (this || _global).v._length = 0;\n\n          for (i = 0; i < numPts; i += 1) {\n            rad = longFlag ? longRad : shortRad;\n            roundness = longFlag ? longRound : shortRound;\n            perimSegment = longFlag ? longPerimSegment : shortPerimSegment;\n            var x = rad * Math.cos(currentAng);\n            var y = rad * Math.sin(currentAng);\n            var ox = x === 0 && y === 0 ? 0 : y / Math.sqrt(x * x + y * y);\n            var oy = x === 0 && y === 0 ? 0 : -x / Math.sqrt(x * x + y * y);\n            x += +(this || _global).p.v[0];\n            y += +(this || _global).p.v[1];\n\n            (this || _global).v.setTripleAt(x, y, x - ox * perimSegment * roundness * dir, y - oy * perimSegment * roundness * dir, x + ox * perimSegment * roundness * dir, y + oy * perimSegment * roundness * dir, i, true);\n            /* this.v.v[i] = [x,y];\r\n                      this.v.i[i] = [x+ox*perimSegment*roundness*dir,y+oy*perimSegment*roundness*dir];\r\n                      this.v.o[i] = [x-ox*perimSegment*roundness*dir,y-oy*perimSegment*roundness*dir];\r\n                      this.v._length = numPts; */\n\n\n            longFlag = !longFlag;\n            currentAng += angle * dir;\n          }\n        },\n        convertPolygonToPath: function () {\n          var numPts = Math.floor((this || _global).pt.v);\n          var angle = Math.PI * 2 / numPts;\n          var rad = (this || _global).or.v;\n          var roundness = (this || _global).os.v;\n          var perimSegment = 2 * Math.PI * rad / (numPts * 4);\n          var i;\n          var currentAng = -Math.PI * 0.5;\n          var dir = (this || _global).data.d === 3 ? -1 : 1;\n          currentAng += (this || _global).r.v;\n          (this || _global).v._length = 0;\n\n          for (i = 0; i < numPts; i += 1) {\n            var x = rad * Math.cos(currentAng);\n            var y = rad * Math.sin(currentAng);\n            var ox = x === 0 && y === 0 ? 0 : y / Math.sqrt(x * x + y * y);\n            var oy = x === 0 && y === 0 ? 0 : -x / Math.sqrt(x * x + y * y);\n            x += +(this || _global).p.v[0];\n            y += +(this || _global).p.v[1];\n\n            (this || _global).v.setTripleAt(x, y, x - ox * perimSegment * roundness * dir, y - oy * perimSegment * roundness * dir, x + ox * perimSegment * roundness * dir, y + oy * perimSegment * roundness * dir, i, true);\n\n            currentAng += angle * dir;\n          }\n\n          (this || _global).paths.length = 0;\n          (this || _global).paths[0] = (this || _global).v;\n        }\n      };\n      extendPrototype([DynamicPropertyContainer], StarShapePropertyFactory);\n      return StarShapePropertyFactory;\n    }();\n\n    var RectShapeProperty = function () {\n      function RectShapePropertyFactory(elem, data) {\n        (this || _global).v = shapePool.newElement();\n        (this || _global).v.c = true;\n        (this || _global).localShapeCollection = shapeCollectionPool.newShapeCollection();\n\n        (this || _global).localShapeCollection.addShape((this || _global).v);\n\n        (this || _global).paths = (this || _global).localShapeCollection;\n        (this || _global).elem = elem;\n        (this || _global).comp = elem.comp;\n        (this || _global).frameId = -1;\n        (this || _global).d = data.d;\n        this.initDynamicPropertyContainer(elem);\n        (this || _global).p = PropertyFactory.getProp(elem, data.p, 1, 0, this || _global);\n        (this || _global).s = PropertyFactory.getProp(elem, data.s, 1, 0, this || _global);\n        (this || _global).r = PropertyFactory.getProp(elem, data.r, 0, 0, this || _global);\n\n        if ((this || _global).dynamicProperties.length) {\n          (this || _global).k = true;\n        } else {\n          (this || _global).k = false;\n          this.convertRectToPath();\n        }\n      }\n\n      RectShapePropertyFactory.prototype = {\n        convertRectToPath: function () {\n          var p0 = (this || _global).p.v[0];\n          var p1 = (this || _global).p.v[1];\n          var v0 = (this || _global).s.v[0] / 2;\n          var v1 = (this || _global).s.v[1] / 2;\n          var round = bmMin(v0, v1, (this || _global).r.v);\n          var cPoint = round * (1 - roundCorner);\n          (this || _global).v._length = 0;\n\n          if ((this || _global).d === 2 || (this || _global).d === 1) {\n            (this || _global).v.setTripleAt(p0 + v0, p1 - v1 + round, p0 + v0, p1 - v1 + round, p0 + v0, p1 - v1 + cPoint, 0, true);\n\n            (this || _global).v.setTripleAt(p0 + v0, p1 + v1 - round, p0 + v0, p1 + v1 - cPoint, p0 + v0, p1 + v1 - round, 1, true);\n\n            if (round !== 0) {\n              (this || _global).v.setTripleAt(p0 + v0 - round, p1 + v1, p0 + v0 - round, p1 + v1, p0 + v0 - cPoint, p1 + v1, 2, true);\n\n              (this || _global).v.setTripleAt(p0 - v0 + round, p1 + v1, p0 - v0 + cPoint, p1 + v1, p0 - v0 + round, p1 + v1, 3, true);\n\n              (this || _global).v.setTripleAt(p0 - v0, p1 + v1 - round, p0 - v0, p1 + v1 - round, p0 - v0, p1 + v1 - cPoint, 4, true);\n\n              (this || _global).v.setTripleAt(p0 - v0, p1 - v1 + round, p0 - v0, p1 - v1 + cPoint, p0 - v0, p1 - v1 + round, 5, true);\n\n              (this || _global).v.setTripleAt(p0 - v0 + round, p1 - v1, p0 - v0 + round, p1 - v1, p0 - v0 + cPoint, p1 - v1, 6, true);\n\n              (this || _global).v.setTripleAt(p0 + v0 - round, p1 - v1, p0 + v0 - cPoint, p1 - v1, p0 + v0 - round, p1 - v1, 7, true);\n            } else {\n              (this || _global).v.setTripleAt(p0 - v0, p1 + v1, p0 - v0 + cPoint, p1 + v1, p0 - v0, p1 + v1, 2);\n\n              (this || _global).v.setTripleAt(p0 - v0, p1 - v1, p0 - v0, p1 - v1 + cPoint, p0 - v0, p1 - v1, 3);\n            }\n          } else {\n            (this || _global).v.setTripleAt(p0 + v0, p1 - v1 + round, p0 + v0, p1 - v1 + cPoint, p0 + v0, p1 - v1 + round, 0, true);\n\n            if (round !== 0) {\n              (this || _global).v.setTripleAt(p0 + v0 - round, p1 - v1, p0 + v0 - round, p1 - v1, p0 + v0 - cPoint, p1 - v1, 1, true);\n\n              (this || _global).v.setTripleAt(p0 - v0 + round, p1 - v1, p0 - v0 + cPoint, p1 - v1, p0 - v0 + round, p1 - v1, 2, true);\n\n              (this || _global).v.setTripleAt(p0 - v0, p1 - v1 + round, p0 - v0, p1 - v1 + round, p0 - v0, p1 - v1 + cPoint, 3, true);\n\n              (this || _global).v.setTripleAt(p0 - v0, p1 + v1 - round, p0 - v0, p1 + v1 - cPoint, p0 - v0, p1 + v1 - round, 4, true);\n\n              (this || _global).v.setTripleAt(p0 - v0 + round, p1 + v1, p0 - v0 + round, p1 + v1, p0 - v0 + cPoint, p1 + v1, 5, true);\n\n              (this || _global).v.setTripleAt(p0 + v0 - round, p1 + v1, p0 + v0 - cPoint, p1 + v1, p0 + v0 - round, p1 + v1, 6, true);\n\n              (this || _global).v.setTripleAt(p0 + v0, p1 + v1 - round, p0 + v0, p1 + v1 - round, p0 + v0, p1 + v1 - cPoint, 7, true);\n            } else {\n              (this || _global).v.setTripleAt(p0 - v0, p1 - v1, p0 - v0 + cPoint, p1 - v1, p0 - v0, p1 - v1, 1, true);\n\n              (this || _global).v.setTripleAt(p0 - v0, p1 + v1, p0 - v0, p1 + v1 - cPoint, p0 - v0, p1 + v1, 2, true);\n\n              (this || _global).v.setTripleAt(p0 + v0, p1 + v1, p0 + v0 - cPoint, p1 + v1, p0 + v0, p1 + v1, 3, true);\n            }\n          }\n        },\n        getValue: function () {\n          if ((this || _global).elem.globalData.frameId === (this || _global).frameId) {\n            return;\n          }\n\n          (this || _global).frameId = (this || _global).elem.globalData.frameId;\n          this.iterateDynamicProperties();\n\n          if ((this || _global)._mdf) {\n            this.convertRectToPath();\n          }\n        },\n        reset: resetShape\n      };\n      extendPrototype([DynamicPropertyContainer], RectShapePropertyFactory);\n      return RectShapePropertyFactory;\n    }();\n\n    function getShapeProp(elem, data, type) {\n      var prop;\n\n      if (type === 3 || type === 4) {\n        var dataProp = type === 3 ? data.pt : data.ks;\n        var keys = dataProp.k;\n\n        if (keys.length) {\n          prop = new KeyframedShapeProperty(elem, data, type);\n        } else {\n          prop = new ShapeProperty(elem, data, type);\n        }\n      } else if (type === 5) {\n        prop = new RectShapeProperty(elem, data);\n      } else if (type === 6) {\n        prop = new EllShapeProperty(elem, data);\n      } else if (type === 7) {\n        prop = new StarShapeProperty(elem, data);\n      }\n\n      if (prop.k) {\n        elem.addDynamicProperty(prop);\n      }\n\n      return prop;\n    }\n\n    function getConstructorFunction() {\n      return ShapeProperty;\n    }\n\n    function getKeyframedConstructorFunction() {\n      return KeyframedShapeProperty;\n    }\n\n    var ob = {};\n    ob.getShapeProp = getShapeProp;\n    ob.getConstructorFunction = getConstructorFunction;\n    ob.getKeyframedConstructorFunction = getKeyframedConstructorFunction;\n    return ob;\n  }();\n  /* global shapeCollectionPool, initialDefaultFrame, extendPrototype, DynamicPropertyContainer */\n\n  /* exported ShapeModifiers */\n\n\n  var ShapeModifiers = function () {\n    var ob = {};\n    var modifiers = {};\n    ob.registerModifier = registerModifier;\n    ob.getModifier = getModifier;\n\n    function registerModifier(nm, factory) {\n      if (!modifiers[nm]) {\n        modifiers[nm] = factory;\n      }\n    }\n\n    function getModifier(nm, elem, data) {\n      return new modifiers[nm](elem, data);\n    }\n\n    return ob;\n  }();\n\n  function ShapeModifier() {}\n\n  ShapeModifier.prototype.initModifierProperties = function () {};\n\n  ShapeModifier.prototype.addShapeToModifier = function () {};\n\n  ShapeModifier.prototype.addShape = function (data) {\n    if (!(this || _global).closed) {\n      // Adding shape to dynamic properties. It covers the case where a shape has no effects applied, to reset it's _mdf state on every tick.\n      data.sh.container.addDynamicProperty(data.sh);\n      var shapeData = {\n        shape: data.sh,\n        data: data,\n        localShapeCollection: shapeCollectionPool.newShapeCollection()\n      };\n\n      (this || _global).shapes.push(shapeData);\n\n      this.addShapeToModifier(shapeData);\n\n      if ((this || _global)._isAnimated) {\n        data.setAsAnimated();\n      }\n    }\n  };\n\n  ShapeModifier.prototype.init = function (elem, data) {\n    (this || _global).shapes = [];\n    (this || _global).elem = elem;\n    this.initDynamicPropertyContainer(elem);\n    this.initModifierProperties(elem, data);\n    (this || _global).frameId = initialDefaultFrame;\n    (this || _global).closed = false;\n    (this || _global).k = false;\n\n    if ((this || _global).dynamicProperties.length) {\n      (this || _global).k = true;\n    } else {\n      this.getValue(true);\n    }\n  };\n\n  ShapeModifier.prototype.processKeys = function () {\n    if ((this || _global).elem.globalData.frameId === (this || _global).frameId) {\n      return;\n    }\n\n    (this || _global).frameId = (this || _global).elem.globalData.frameId;\n    this.iterateDynamicProperties();\n  };\n\n  extendPrototype([DynamicPropertyContainer], ShapeModifier);\n  /* global extendPrototype, ShapeModifier, PropertyFactory, segmentsLengthPool, bez, shapePool, ShapeModifiers */\n\n  function TrimModifier() {}\n\n  extendPrototype([ShapeModifier], TrimModifier);\n\n  TrimModifier.prototype.initModifierProperties = function (elem, data) {\n    (this || _global).s = PropertyFactory.getProp(elem, data.s, 0, 0.01, this || _global);\n    (this || _global).e = PropertyFactory.getProp(elem, data.e, 0, 0.01, this || _global);\n    (this || _global).o = PropertyFactory.getProp(elem, data.o, 0, 0, this || _global);\n    (this || _global).sValue = 0;\n    (this || _global).eValue = 0;\n    (this || _global).getValue = (this || _global).processKeys;\n    (this || _global).m = data.m;\n    (this || _global)._isAnimated = !!(this || _global).s.effectsSequence.length || !!(this || _global).e.effectsSequence.length || !!(this || _global).o.effectsSequence.length;\n  };\n\n  TrimModifier.prototype.addShapeToModifier = function (shapeData) {\n    shapeData.pathsData = [];\n  };\n\n  TrimModifier.prototype.calculateShapeEdges = function (s, e, shapeLength, addedLength, totalModifierLength) {\n    var segments = [];\n\n    if (e <= 1) {\n      segments.push({\n        s: s,\n        e: e\n      });\n    } else if (s >= 1) {\n      segments.push({\n        s: s - 1,\n        e: e - 1\n      });\n    } else {\n      segments.push({\n        s: s,\n        e: 1\n      });\n      segments.push({\n        s: 0,\n        e: e - 1\n      });\n    }\n\n    var shapeSegments = [];\n    var i;\n    var len = segments.length;\n    var segmentOb;\n\n    for (i = 0; i < len; i += 1) {\n      segmentOb = segments[i];\n\n      if (!(segmentOb.e * totalModifierLength < addedLength || segmentOb.s * totalModifierLength > addedLength + shapeLength)) {\n        var shapeS;\n        var shapeE;\n\n        if (segmentOb.s * totalModifierLength <= addedLength) {\n          shapeS = 0;\n        } else {\n          shapeS = (segmentOb.s * totalModifierLength - addedLength) / shapeLength;\n        }\n\n        if (segmentOb.e * totalModifierLength >= addedLength + shapeLength) {\n          shapeE = 1;\n        } else {\n          shapeE = (segmentOb.e * totalModifierLength - addedLength) / shapeLength;\n        }\n\n        shapeSegments.push([shapeS, shapeE]);\n      }\n    }\n\n    if (!shapeSegments.length) {\n      shapeSegments.push([0, 0]);\n    }\n\n    return shapeSegments;\n  };\n\n  TrimModifier.prototype.releasePathsData = function (pathsData) {\n    var i;\n    var len = pathsData.length;\n\n    for (i = 0; i < len; i += 1) {\n      segmentsLengthPool.release(pathsData[i]);\n    }\n\n    pathsData.length = 0;\n    return pathsData;\n  };\n\n  TrimModifier.prototype.processShapes = function (_isFirstFrame) {\n    var s;\n    var e;\n\n    if ((this || _global)._mdf || _isFirstFrame) {\n      var o = (this || _global).o.v % 360 / 360;\n\n      if (o < 0) {\n        o += 1;\n      }\n\n      if ((this || _global).s.v > 1) {\n        s = 1 + o;\n      } else if ((this || _global).s.v < 0) {\n        s = 0 + o;\n      } else {\n        s = (this || _global).s.v + o;\n      }\n\n      if ((this || _global).e.v > 1) {\n        e = 1 + o;\n      } else if ((this || _global).e.v < 0) {\n        e = 0 + o;\n      } else {\n        e = (this || _global).e.v + o;\n      }\n\n      if (s > e) {\n        var _s = s;\n        s = e;\n        e = _s;\n      }\n\n      s = Math.round(s * 10000) * 0.0001;\n      e = Math.round(e * 10000) * 0.0001;\n      (this || _global).sValue = s;\n      (this || _global).eValue = e;\n    } else {\n      s = (this || _global).sValue;\n      e = (this || _global).eValue;\n    }\n\n    var shapePaths;\n    var i;\n    var len = (this || _global).shapes.length;\n    var j;\n    var jLen;\n    var pathsData;\n    var pathData;\n    var totalShapeLength;\n    var totalModifierLength = 0;\n\n    if (e === s) {\n      for (i = 0; i < len; i += 1) {\n        (this || _global).shapes[i].localShapeCollection.releaseShapes();\n\n        (this || _global).shapes[i].shape._mdf = true;\n        (this || _global).shapes[i].shape.paths = (this || _global).shapes[i].localShapeCollection;\n\n        if ((this || _global)._mdf) {\n          (this || _global).shapes[i].pathsData.length = 0;\n        }\n      }\n    } else if (!(e === 1 && s === 0 || e === 0 && s === 1)) {\n      var segments = [];\n      var shapeData;\n      var localShapeCollection;\n\n      for (i = 0; i < len; i += 1) {\n        shapeData = (this || _global).shapes[i]; // if shape hasn't changed and trim properties haven't changed, cached previous path can be used\n\n        if (!shapeData.shape._mdf && !(this || _global)._mdf && !_isFirstFrame && (this || _global).m !== 2) {\n          shapeData.shape.paths = shapeData.localShapeCollection;\n        } else {\n          shapePaths = shapeData.shape.paths;\n          jLen = shapePaths._length;\n          totalShapeLength = 0;\n\n          if (!shapeData.shape._mdf && shapeData.pathsData.length) {\n            totalShapeLength = shapeData.totalShapeLength;\n          } else {\n            pathsData = this.releasePathsData(shapeData.pathsData);\n\n            for (j = 0; j < jLen; j += 1) {\n              pathData = bez.getSegmentsLength(shapePaths.shapes[j]);\n              pathsData.push(pathData);\n              totalShapeLength += pathData.totalLength;\n            }\n\n            shapeData.totalShapeLength = totalShapeLength;\n            shapeData.pathsData = pathsData;\n          }\n\n          totalModifierLength += totalShapeLength;\n          shapeData.shape._mdf = true;\n        }\n      }\n\n      var shapeS = s;\n      var shapeE = e;\n      var addedLength = 0;\n      var edges;\n\n      for (i = len - 1; i >= 0; i -= 1) {\n        shapeData = (this || _global).shapes[i];\n\n        if (shapeData.shape._mdf) {\n          localShapeCollection = shapeData.localShapeCollection;\n          localShapeCollection.releaseShapes(); // if m === 2 means paths are trimmed individually so edges need to be found for this specific shape relative to whoel group\n\n          if ((this || _global).m === 2 && len > 1) {\n            edges = this.calculateShapeEdges(s, e, shapeData.totalShapeLength, addedLength, totalModifierLength);\n            addedLength += shapeData.totalShapeLength;\n          } else {\n            edges = [[shapeS, shapeE]];\n          }\n\n          jLen = edges.length;\n\n          for (j = 0; j < jLen; j += 1) {\n            shapeS = edges[j][0];\n            shapeE = edges[j][1];\n            segments.length = 0;\n\n            if (shapeE <= 1) {\n              segments.push({\n                s: shapeData.totalShapeLength * shapeS,\n                e: shapeData.totalShapeLength * shapeE\n              });\n            } else if (shapeS >= 1) {\n              segments.push({\n                s: shapeData.totalShapeLength * (shapeS - 1),\n                e: shapeData.totalShapeLength * (shapeE - 1)\n              });\n            } else {\n              segments.push({\n                s: shapeData.totalShapeLength * shapeS,\n                e: shapeData.totalShapeLength\n              });\n              segments.push({\n                s: 0,\n                e: shapeData.totalShapeLength * (shapeE - 1)\n              });\n            }\n\n            var newShapesData = this.addShapes(shapeData, segments[0]);\n\n            if (segments[0].s !== segments[0].e) {\n              if (segments.length > 1) {\n                var lastShapeInCollection = shapeData.shape.paths.shapes[shapeData.shape.paths._length - 1];\n\n                if (lastShapeInCollection.c) {\n                  var lastShape = newShapesData.pop();\n                  this.addPaths(newShapesData, localShapeCollection);\n                  newShapesData = this.addShapes(shapeData, segments[1], lastShape);\n                } else {\n                  this.addPaths(newShapesData, localShapeCollection);\n                  newShapesData = this.addShapes(shapeData, segments[1]);\n                }\n              }\n\n              this.addPaths(newShapesData, localShapeCollection);\n            }\n          }\n\n          shapeData.shape.paths = localShapeCollection;\n        }\n      }\n    } else if ((this || _global)._mdf) {\n      for (i = 0; i < len; i += 1) {\n        // Releasign Trim Cached paths data when no trim applied in case shapes are modified inbetween.\n        // Don't remove this even if it's losing cached info.\n        (this || _global).shapes[i].pathsData.length = 0;\n        (this || _global).shapes[i].shape._mdf = true;\n      }\n    }\n  };\n\n  TrimModifier.prototype.addPaths = function (newPaths, localShapeCollection) {\n    var i;\n    var len = newPaths.length;\n\n    for (i = 0; i < len; i += 1) {\n      localShapeCollection.addShape(newPaths[i]);\n    }\n  };\n\n  TrimModifier.prototype.addSegment = function (pt1, pt2, pt3, pt4, shapePath, pos, newShape) {\n    shapePath.setXYAt(pt2[0], pt2[1], \"o\", pos);\n    shapePath.setXYAt(pt3[0], pt3[1], \"i\", pos + 1);\n\n    if (newShape) {\n      shapePath.setXYAt(pt1[0], pt1[1], \"v\", pos);\n    }\n\n    shapePath.setXYAt(pt4[0], pt4[1], \"v\", pos + 1);\n  };\n\n  TrimModifier.prototype.addSegmentFromArray = function (points, shapePath, pos, newShape) {\n    shapePath.setXYAt(points[1], points[5], \"o\", pos);\n    shapePath.setXYAt(points[2], points[6], \"i\", pos + 1);\n\n    if (newShape) {\n      shapePath.setXYAt(points[0], points[4], \"v\", pos);\n    }\n\n    shapePath.setXYAt(points[3], points[7], \"v\", pos + 1);\n  };\n\n  TrimModifier.prototype.addShapes = function (shapeData, shapeSegment, shapePath) {\n    var pathsData = shapeData.pathsData;\n    var shapePaths = shapeData.shape.paths.shapes;\n    var i;\n    var len = shapeData.shape.paths._length;\n    var j;\n    var jLen;\n    var addedLength = 0;\n    var currentLengthData;\n    var segmentCount;\n    var lengths;\n    var segment;\n    var shapes = [];\n    var initPos;\n    var newShape = true;\n\n    if (!shapePath) {\n      shapePath = shapePool.newElement();\n      segmentCount = 0;\n      initPos = 0;\n    } else {\n      segmentCount = shapePath._length;\n      initPos = shapePath._length;\n    }\n\n    shapes.push(shapePath);\n\n    for (i = 0; i < len; i += 1) {\n      lengths = pathsData[i].lengths;\n      shapePath.c = shapePaths[i].c;\n      jLen = shapePaths[i].c ? lengths.length : lengths.length + 1;\n\n      for (j = 1; j < jLen; j += 1) {\n        currentLengthData = lengths[j - 1];\n\n        if (addedLength + currentLengthData.addedLength < shapeSegment.s) {\n          addedLength += currentLengthData.addedLength;\n          shapePath.c = false;\n        } else if (addedLength > shapeSegment.e) {\n          shapePath.c = false;\n          break;\n        } else {\n          if (shapeSegment.s <= addedLength && shapeSegment.e >= addedLength + currentLengthData.addedLength) {\n            this.addSegment(shapePaths[i].v[j - 1], shapePaths[i].o[j - 1], shapePaths[i].i[j], shapePaths[i].v[j], shapePath, segmentCount, newShape);\n            newShape = false;\n          } else {\n            segment = bez.getNewSegment(shapePaths[i].v[j - 1], shapePaths[i].v[j], shapePaths[i].o[j - 1], shapePaths[i].i[j], (shapeSegment.s - addedLength) / currentLengthData.addedLength, (shapeSegment.e - addedLength) / currentLengthData.addedLength, lengths[j - 1]);\n            this.addSegmentFromArray(segment, shapePath, segmentCount, newShape); // this.addSegment(segment.pt1, segment.pt3, segment.pt4, segment.pt2, shapePath, segmentCount, newShape);\n\n            newShape = false;\n            shapePath.c = false;\n          }\n\n          addedLength += currentLengthData.addedLength;\n          segmentCount += 1;\n        }\n      }\n\n      if (shapePaths[i].c && lengths.length) {\n        currentLengthData = lengths[j - 1];\n\n        if (addedLength <= shapeSegment.e) {\n          var segmentLength = lengths[j - 1].addedLength;\n\n          if (shapeSegment.s <= addedLength && shapeSegment.e >= addedLength + segmentLength) {\n            this.addSegment(shapePaths[i].v[j - 1], shapePaths[i].o[j - 1], shapePaths[i].i[0], shapePaths[i].v[0], shapePath, segmentCount, newShape);\n            newShape = false;\n          } else {\n            segment = bez.getNewSegment(shapePaths[i].v[j - 1], shapePaths[i].v[0], shapePaths[i].o[j - 1], shapePaths[i].i[0], (shapeSegment.s - addedLength) / segmentLength, (shapeSegment.e - addedLength) / segmentLength, lengths[j - 1]);\n            this.addSegmentFromArray(segment, shapePath, segmentCount, newShape); // this.addSegment(segment.pt1, segment.pt3, segment.pt4, segment.pt2, shapePath, segmentCount, newShape);\n\n            newShape = false;\n            shapePath.c = false;\n          }\n        } else {\n          shapePath.c = false;\n        }\n\n        addedLength += currentLengthData.addedLength;\n        segmentCount += 1;\n      }\n\n      if (shapePath._length) {\n        shapePath.setXYAt(shapePath.v[initPos][0], shapePath.v[initPos][1], \"i\", initPos);\n        shapePath.setXYAt(shapePath.v[shapePath._length - 1][0], shapePath.v[shapePath._length - 1][1], \"o\", shapePath._length - 1);\n      }\n\n      if (addedLength > shapeSegment.e) {\n        break;\n      }\n\n      if (i < len - 1) {\n        shapePath = shapePool.newElement();\n        newShape = true;\n        shapes.push(shapePath);\n        segmentCount = 0;\n      }\n    }\n\n    return shapes;\n  };\n\n  ShapeModifiers.registerModifier(\"tm\", TrimModifier);\n  /* global extendPrototype, ShapeModifier, PropertyFactory, shapePool, roundCorner, ShapeModifiers */\n\n  function RoundCornersModifier() {}\n\n  extendPrototype([ShapeModifier], RoundCornersModifier);\n\n  RoundCornersModifier.prototype.initModifierProperties = function (elem, data) {\n    (this || _global).getValue = (this || _global).processKeys;\n    (this || _global).rd = PropertyFactory.getProp(elem, data.r, 0, null, this || _global);\n    (this || _global)._isAnimated = !!(this || _global).rd.effectsSequence.length;\n  };\n\n  RoundCornersModifier.prototype.processPath = function (path, round) {\n    var clonedPath = shapePool.newElement();\n    clonedPath.c = path.c;\n    var i;\n    var len = path._length;\n    var currentV;\n    var currentI;\n    var currentO;\n    var closerV;\n    var distance;\n    var newPosPerc;\n    var index = 0;\n    var vX;\n    var vY;\n    var oX;\n    var oY;\n    var iX;\n    var iY;\n\n    for (i = 0; i < len; i += 1) {\n      currentV = path.v[i];\n      currentO = path.o[i];\n      currentI = path.i[i];\n\n      if (currentV[0] === currentO[0] && currentV[1] === currentO[1] && currentV[0] === currentI[0] && currentV[1] === currentI[1]) {\n        if ((i === 0 || i === len - 1) && !path.c) {\n          clonedPath.setTripleAt(currentV[0], currentV[1], currentO[0], currentO[1], currentI[0], currentI[1], index);\n          /* clonedPath.v[index] = currentV;\r\n                  clonedPath.o[index] = currentO;\r\n                  clonedPath.i[index] = currentI; */\n\n          index += 1;\n        } else {\n          if (i === 0) {\n            closerV = path.v[len - 1];\n          } else {\n            closerV = path.v[i - 1];\n          }\n\n          distance = Math.sqrt(Math.pow(currentV[0] - closerV[0], 2) + Math.pow(currentV[1] - closerV[1], 2));\n          newPosPerc = distance ? Math.min(distance / 2, round) / distance : 0;\n          iX = currentV[0] + (closerV[0] - currentV[0]) * newPosPerc;\n          vX = iX;\n          iY = currentV[1] - (currentV[1] - closerV[1]) * newPosPerc;\n          vY = iY;\n          oX = vX - (vX - currentV[0]) * roundCorner;\n          oY = vY - (vY - currentV[1]) * roundCorner;\n          clonedPath.setTripleAt(vX, vY, oX, oY, iX, iY, index);\n          index += 1;\n\n          if (i === len - 1) {\n            closerV = path.v[0];\n          } else {\n            closerV = path.v[i + 1];\n          }\n\n          distance = Math.sqrt(Math.pow(currentV[0] - closerV[0], 2) + Math.pow(currentV[1] - closerV[1], 2));\n          newPosPerc = distance ? Math.min(distance / 2, round) / distance : 0;\n          oX = currentV[0] + (closerV[0] - currentV[0]) * newPosPerc;\n          vX = oX;\n          oY = currentV[1] + (closerV[1] - currentV[1]) * newPosPerc;\n          vY = oY;\n          iX = vX - (vX - currentV[0]) * roundCorner;\n          iY = vY - (vY - currentV[1]) * roundCorner;\n          clonedPath.setTripleAt(vX, vY, oX, oY, iX, iY, index);\n          index += 1;\n        }\n      } else {\n        clonedPath.setTripleAt(path.v[i][0], path.v[i][1], path.o[i][0], path.o[i][1], path.i[i][0], path.i[i][1], index);\n        index += 1;\n      }\n    }\n\n    return clonedPath;\n  };\n\n  RoundCornersModifier.prototype.processShapes = function (_isFirstFrame) {\n    var shapePaths;\n    var i;\n    var len = (this || _global).shapes.length;\n    var j;\n    var jLen;\n    var rd = (this || _global).rd.v;\n\n    if (rd !== 0) {\n      var shapeData;\n      var localShapeCollection;\n\n      for (i = 0; i < len; i += 1) {\n        shapeData = (this || _global).shapes[i];\n        localShapeCollection = shapeData.localShapeCollection;\n\n        if (!(!shapeData.shape._mdf && !(this || _global)._mdf && !_isFirstFrame)) {\n          localShapeCollection.releaseShapes();\n          shapeData.shape._mdf = true;\n          shapePaths = shapeData.shape.paths.shapes;\n          jLen = shapeData.shape.paths._length;\n\n          for (j = 0; j < jLen; j += 1) {\n            localShapeCollection.addShape(this.processPath(shapePaths[j], rd));\n          }\n        }\n\n        shapeData.shape.paths = shapeData.localShapeCollection;\n      }\n    }\n\n    if (!(this || _global).dynamicProperties.length) {\n      (this || _global)._mdf = false;\n    }\n  };\n\n  ShapeModifiers.registerModifier(\"rd\", RoundCornersModifier);\n  /* global extendPrototype, ShapeModifier, PropertyFactory, shapePool, ShapeModifiers */\n\n  function PuckerAndBloatModifier() {}\n\n  extendPrototype([ShapeModifier], PuckerAndBloatModifier);\n\n  PuckerAndBloatModifier.prototype.initModifierProperties = function (elem, data) {\n    (this || _global).getValue = (this || _global).processKeys;\n    (this || _global).amount = PropertyFactory.getProp(elem, data.a, 0, null, this || _global);\n    (this || _global)._isAnimated = !!(this || _global).amount.effectsSequence.length;\n  };\n\n  PuckerAndBloatModifier.prototype.processPath = function (path, amount) {\n    var percent = amount / 100;\n    var centerPoint = [0, 0];\n    var pathLength = path._length;\n    var i = 0;\n\n    for (i = 0; i < pathLength; i += 1) {\n      centerPoint[0] += path.v[i][0];\n      centerPoint[1] += path.v[i][1];\n    }\n\n    centerPoint[0] /= pathLength;\n    centerPoint[1] /= pathLength;\n    var clonedPath = shapePool.newElement();\n    clonedPath.c = path.c;\n    var vX;\n    var vY;\n    var oX;\n    var oY;\n    var iX;\n    var iY;\n\n    for (i = 0; i < pathLength; i += 1) {\n      vX = path.v[i][0] + (centerPoint[0] - path.v[i][0]) * percent;\n      vY = path.v[i][1] + (centerPoint[1] - path.v[i][1]) * percent;\n      oX = path.o[i][0] + (centerPoint[0] - path.o[i][0]) * -percent;\n      oY = path.o[i][1] + (centerPoint[1] - path.o[i][1]) * -percent;\n      iX = path.i[i][0] + (centerPoint[0] - path.i[i][0]) * -percent;\n      iY = path.i[i][1] + (centerPoint[1] - path.i[i][1]) * -percent;\n      clonedPath.setTripleAt(vX, vY, oX, oY, iX, iY, i);\n    }\n\n    return clonedPath;\n  };\n\n  PuckerAndBloatModifier.prototype.processShapes = function (_isFirstFrame) {\n    var shapePaths;\n    var i;\n    var len = (this || _global).shapes.length;\n    var j;\n    var jLen;\n    var amount = (this || _global).amount.v;\n\n    if (amount !== 0) {\n      var shapeData;\n      var localShapeCollection;\n\n      for (i = 0; i < len; i += 1) {\n        shapeData = (this || _global).shapes[i];\n        localShapeCollection = shapeData.localShapeCollection;\n\n        if (!(!shapeData.shape._mdf && !(this || _global)._mdf && !_isFirstFrame)) {\n          localShapeCollection.releaseShapes();\n          shapeData.shape._mdf = true;\n          shapePaths = shapeData.shape.paths.shapes;\n          jLen = shapeData.shape.paths._length;\n\n          for (j = 0; j < jLen; j += 1) {\n            localShapeCollection.addShape(this.processPath(shapePaths[j], amount));\n          }\n        }\n\n        shapeData.shape.paths = shapeData.localShapeCollection;\n      }\n    }\n\n    if (!(this || _global).dynamicProperties.length) {\n      (this || _global)._mdf = false;\n    }\n  };\n\n  ShapeModifiers.registerModifier(\"pb\", PuckerAndBloatModifier);\n  /* global extendPrototype, ShapeModifier, TransformPropertyFactory, PropertyFactory, Matrix, ShapeModifiers */\n\n  function RepeaterModifier() {}\n\n  extendPrototype([ShapeModifier], RepeaterModifier);\n\n  RepeaterModifier.prototype.initModifierProperties = function (elem, data) {\n    (this || _global).getValue = (this || _global).processKeys;\n    (this || _global).c = PropertyFactory.getProp(elem, data.c, 0, null, this || _global);\n    (this || _global).o = PropertyFactory.getProp(elem, data.o, 0, null, this || _global);\n    (this || _global).tr = TransformPropertyFactory.getTransformProperty(elem, data.tr, this || _global);\n    (this || _global).so = PropertyFactory.getProp(elem, data.tr.so, 0, 0.01, this || _global);\n    (this || _global).eo = PropertyFactory.getProp(elem, data.tr.eo, 0, 0.01, this || _global);\n    (this || _global).data = data;\n\n    if (!(this || _global).dynamicProperties.length) {\n      this.getValue(true);\n    }\n\n    (this || _global)._isAnimated = !!(this || _global).dynamicProperties.length;\n    (this || _global).pMatrix = new Matrix();\n    (this || _global).rMatrix = new Matrix();\n    (this || _global).sMatrix = new Matrix();\n    (this || _global).tMatrix = new Matrix();\n    (this || _global).matrix = new Matrix();\n  };\n\n  RepeaterModifier.prototype.applyTransforms = function (pMatrix, rMatrix, sMatrix, transform, perc, inv) {\n    var dir = inv ? -1 : 1;\n    var scaleX = transform.s.v[0] + (1 - transform.s.v[0]) * (1 - perc);\n    var scaleY = transform.s.v[1] + (1 - transform.s.v[1]) * (1 - perc);\n    pMatrix.translate(transform.p.v[0] * dir * perc, transform.p.v[1] * dir * perc, transform.p.v[2]);\n    rMatrix.translate(-transform.a.v[0], -transform.a.v[1], transform.a.v[2]);\n    rMatrix.rotate(-transform.r.v * dir * perc);\n    rMatrix.translate(transform.a.v[0], transform.a.v[1], transform.a.v[2]);\n    sMatrix.translate(-transform.a.v[0], -transform.a.v[1], transform.a.v[2]);\n    sMatrix.scale(inv ? 1 / scaleX : scaleX, inv ? 1 / scaleY : scaleY);\n    sMatrix.translate(transform.a.v[0], transform.a.v[1], transform.a.v[2]);\n  };\n\n  RepeaterModifier.prototype.init = function (elem, arr, pos, elemsData) {\n    (this || _global).elem = elem;\n    (this || _global).arr = arr;\n    (this || _global).pos = pos;\n    (this || _global).elemsData = elemsData;\n    (this || _global)._currentCopies = 0;\n    (this || _global)._elements = [];\n    (this || _global)._groups = [];\n    (this || _global).frameId = -1;\n    this.initDynamicPropertyContainer(elem);\n    this.initModifierProperties(elem, arr[pos]);\n\n    while (pos > 0) {\n      pos -= 1; // this._elements.unshift(arr.splice(pos,1)[0]);\n\n      (this || _global)._elements.unshift(arr[pos]);\n    }\n\n    if ((this || _global).dynamicProperties.length) {\n      (this || _global).k = true;\n    } else {\n      this.getValue(true);\n    }\n  };\n\n  RepeaterModifier.prototype.resetElements = function (elements) {\n    var i;\n    var len = elements.length;\n\n    for (i = 0; i < len; i += 1) {\n      elements[i]._processed = false;\n\n      if (elements[i].ty === \"gr\") {\n        this.resetElements(elements[i].it);\n      }\n    }\n  };\n\n  RepeaterModifier.prototype.cloneElements = function (elements) {\n    var newElements = JSON.parse(JSON.stringify(elements));\n    this.resetElements(newElements);\n    return newElements;\n  };\n\n  RepeaterModifier.prototype.changeGroupRender = function (elements, renderFlag) {\n    var i;\n    var len = elements.length;\n\n    for (i = 0; i < len; i += 1) {\n      elements[i]._render = renderFlag;\n\n      if (elements[i].ty === \"gr\") {\n        this.changeGroupRender(elements[i].it, renderFlag);\n      }\n    }\n  };\n\n  RepeaterModifier.prototype.processShapes = function (_isFirstFrame) {\n    var items;\n    var itemsTransform;\n    var i;\n    var dir;\n    var cont;\n    var hasReloaded = false;\n\n    if ((this || _global)._mdf || _isFirstFrame) {\n      var copies = Math.ceil((this || _global).c.v);\n\n      if ((this || _global)._groups.length < copies) {\n        while ((this || _global)._groups.length < copies) {\n          var group = {\n            it: this.cloneElements((this || _global)._elements),\n            ty: \"gr\"\n          };\n          group.it.push({\n            a: {\n              a: 0,\n              ix: 1,\n              k: [0, 0]\n            },\n            nm: \"Transform\",\n            o: {\n              a: 0,\n              ix: 7,\n              k: 100\n            },\n            p: {\n              a: 0,\n              ix: 2,\n              k: [0, 0]\n            },\n            r: {\n              a: 1,\n              ix: 6,\n              k: [{\n                s: 0,\n                e: 0,\n                t: 0\n              }, {\n                s: 0,\n                e: 0,\n                t: 1\n              }]\n            },\n            s: {\n              a: 0,\n              ix: 3,\n              k: [100, 100]\n            },\n            sa: {\n              a: 0,\n              ix: 5,\n              k: 0\n            },\n            sk: {\n              a: 0,\n              ix: 4,\n              k: 0\n            },\n            ty: \"tr\"\n          });\n\n          (this || _global).arr.splice(0, 0, group);\n\n          (this || _global)._groups.splice(0, 0, group);\n\n          (this || _global)._currentCopies += 1;\n        }\n\n        (this || _global).elem.reloadShapes();\n\n        hasReloaded = true;\n      }\n\n      cont = 0;\n      var renderFlag;\n\n      for (i = 0; i <= (this || _global)._groups.length - 1; i += 1) {\n        renderFlag = cont < copies;\n        (this || _global)._groups[i]._render = renderFlag;\n        this.changeGroupRender((this || _global)._groups[i].it, renderFlag);\n\n        if (!renderFlag) {\n          var elems = (this || _global).elemsData[i].it;\n          var transformData = elems[elems.length - 1];\n\n          if (transformData.transform.op.v !== 0) {\n            transformData.transform.op._mdf = true;\n            transformData.transform.op.v = 0;\n          } else {\n            transformData.transform.op._mdf = false;\n          }\n        }\n\n        cont += 1;\n      }\n\n      (this || _global)._currentCopies = copies; /// /\n\n      var offset = (this || _global).o.v;\n      var offsetModulo = offset % 1;\n      var roundOffset = offset > 0 ? Math.floor(offset) : Math.ceil(offset);\n      var pProps = (this || _global).pMatrix.props;\n      var rProps = (this || _global).rMatrix.props;\n      var sProps = (this || _global).sMatrix.props;\n\n      (this || _global).pMatrix.reset();\n\n      (this || _global).rMatrix.reset();\n\n      (this || _global).sMatrix.reset();\n\n      (this || _global).tMatrix.reset();\n\n      (this || _global).matrix.reset();\n\n      var iteration = 0;\n\n      if (offset > 0) {\n        while (iteration < roundOffset) {\n          this.applyTransforms((this || _global).pMatrix, (this || _global).rMatrix, (this || _global).sMatrix, (this || _global).tr, 1, false);\n          iteration += 1;\n        }\n\n        if (offsetModulo) {\n          this.applyTransforms((this || _global).pMatrix, (this || _global).rMatrix, (this || _global).sMatrix, (this || _global).tr, offsetModulo, false);\n          iteration += offsetModulo;\n        }\n      } else if (offset < 0) {\n        while (iteration > roundOffset) {\n          this.applyTransforms((this || _global).pMatrix, (this || _global).rMatrix, (this || _global).sMatrix, (this || _global).tr, 1, true);\n          iteration -= 1;\n        }\n\n        if (offsetModulo) {\n          this.applyTransforms((this || _global).pMatrix, (this || _global).rMatrix, (this || _global).sMatrix, (this || _global).tr, -offsetModulo, true);\n          iteration -= offsetModulo;\n        }\n      }\n\n      i = (this || _global).data.m === 1 ? 0 : (this || _global)._currentCopies - 1;\n      dir = (this || _global).data.m === 1 ? 1 : -1;\n      cont = (this || _global)._currentCopies;\n      var j;\n      var jLen;\n\n      while (cont) {\n        items = (this || _global).elemsData[i].it;\n        itemsTransform = items[items.length - 1].transform.mProps.v.props;\n        jLen = itemsTransform.length;\n        items[items.length - 1].transform.mProps._mdf = true;\n        items[items.length - 1].transform.op._mdf = true;\n        items[items.length - 1].transform.op.v = (this || _global)._currentCopies === 1 ? (this || _global).so.v : (this || _global).so.v + ((this || _global).eo.v - (this || _global).so.v) * (i / ((this || _global)._currentCopies - 1));\n\n        if (iteration !== 0) {\n          if (i !== 0 && dir === 1 || i !== (this || _global)._currentCopies - 1 && dir === -1) {\n            this.applyTransforms((this || _global).pMatrix, (this || _global).rMatrix, (this || _global).sMatrix, (this || _global).tr, 1, false);\n          }\n\n          (this || _global).matrix.transform(rProps[0], rProps[1], rProps[2], rProps[3], rProps[4], rProps[5], rProps[6], rProps[7], rProps[8], rProps[9], rProps[10], rProps[11], rProps[12], rProps[13], rProps[14], rProps[15]);\n\n          (this || _global).matrix.transform(sProps[0], sProps[1], sProps[2], sProps[3], sProps[4], sProps[5], sProps[6], sProps[7], sProps[8], sProps[9], sProps[10], sProps[11], sProps[12], sProps[13], sProps[14], sProps[15]);\n\n          (this || _global).matrix.transform(pProps[0], pProps[1], pProps[2], pProps[3], pProps[4], pProps[5], pProps[6], pProps[7], pProps[8], pProps[9], pProps[10], pProps[11], pProps[12], pProps[13], pProps[14], pProps[15]);\n\n          for (j = 0; j < jLen; j += 1) {\n            itemsTransform[j] = (this || _global).matrix.props[j];\n          }\n\n          (this || _global).matrix.reset();\n        } else {\n          (this || _global).matrix.reset();\n\n          for (j = 0; j < jLen; j += 1) {\n            itemsTransform[j] = (this || _global).matrix.props[j];\n          }\n        }\n\n        iteration += 1;\n        cont -= 1;\n        i += dir;\n      }\n    } else {\n      cont = (this || _global)._currentCopies;\n      i = 0;\n      dir = 1;\n\n      while (cont) {\n        items = (this || _global).elemsData[i].it;\n        itemsTransform = items[items.length - 1].transform.mProps.v.props;\n        items[items.length - 1].transform.mProps._mdf = false;\n        items[items.length - 1].transform.op._mdf = false;\n        cont -= 1;\n        i += dir;\n      }\n    }\n\n    return hasReloaded;\n  };\n\n  RepeaterModifier.prototype.addShape = function () {};\n\n  ShapeModifiers.registerModifier(\"rp\", RepeaterModifier);\n  /* global createSizedArray, shapePool */\n\n  function ShapeCollection() {\n    (this || _global)._length = 0;\n    (this || _global)._maxLength = 4;\n    (this || _global).shapes = createSizedArray((this || _global)._maxLength);\n  }\n\n  ShapeCollection.prototype.addShape = function (shapeData) {\n    if ((this || _global)._length === (this || _global)._maxLength) {\n      (this || _global).shapes = (this || _global).shapes.concat(createSizedArray((this || _global)._maxLength));\n      (this || _global)._maxLength *= 2;\n    }\n\n    (this || _global).shapes[(this || _global)._length] = shapeData;\n    (this || _global)._length += 1;\n  };\n\n  ShapeCollection.prototype.releaseShapes = function () {\n    var i;\n\n    for (i = 0; i < (this || _global)._length; i += 1) {\n      shapePool.release((this || _global).shapes[i]);\n    }\n\n    (this || _global)._length = 0;\n  };\n  /* global createSizedArray, createTypedArray, PropertyFactory, extendPrototype, DynamicPropertyContainer */\n\n\n  function DashProperty(elem, data, renderer, container) {\n    (this || _global).elem = elem;\n    (this || _global).frameId = -1;\n    (this || _global).dataProps = createSizedArray(data.length);\n    (this || _global).renderer = renderer;\n    (this || _global).k = false;\n    (this || _global).dashStr = \"\";\n    (this || _global).dashArray = createTypedArray(\"float32\", data.length ? data.length - 1 : 0);\n    (this || _global).dashoffset = createTypedArray(\"float32\", 1);\n    this.initDynamicPropertyContainer(container);\n    var i;\n    var len = data.length || 0;\n    var prop;\n\n    for (i = 0; i < len; i += 1) {\n      prop = PropertyFactory.getProp(elem, data[i].v, 0, 0, this || _global);\n      (this || _global).k = prop.k || (this || _global).k;\n      (this || _global).dataProps[i] = {\n        n: data[i].n,\n        p: prop\n      };\n    }\n\n    if (!(this || _global).k) {\n      this.getValue(true);\n    }\n\n    (this || _global)._isAnimated = (this || _global).k;\n  }\n\n  DashProperty.prototype.getValue = function (forceRender) {\n    if ((this || _global).elem.globalData.frameId === (this || _global).frameId && !forceRender) {\n      return;\n    }\n\n    (this || _global).frameId = (this || _global).elem.globalData.frameId;\n    this.iterateDynamicProperties();\n    (this || _global)._mdf = (this || _global)._mdf || forceRender;\n\n    if ((this || _global)._mdf) {\n      var i = 0;\n      var len = (this || _global).dataProps.length;\n\n      if ((this || _global).renderer === \"svg\") {\n        (this || _global).dashStr = \"\";\n      }\n\n      for (i = 0; i < len; i += 1) {\n        if ((this || _global).dataProps[i].n !== \"o\") {\n          if ((this || _global).renderer === \"svg\") {\n            (this || _global).dashStr += \" \" + (this || _global).dataProps[i].p.v;\n          } else {\n            (this || _global).dashArray[i] = (this || _global).dataProps[i].p.v;\n          }\n        } else {\n          (this || _global).dashoffset[0] = (this || _global).dataProps[i].p.v;\n        }\n      }\n    }\n  };\n\n  extendPrototype([DynamicPropertyContainer], DashProperty);\n  /* global createTypedArray, PropertyFactory, extendPrototype, DynamicPropertyContainer */\n\n  function GradientProperty(elem, data, container) {\n    (this || _global).data = data;\n    (this || _global).c = createTypedArray(\"uint8c\", data.p * 4);\n    var cLength = data.k.k[0].s ? data.k.k[0].s.length - data.p * 4 : data.k.k.length - data.p * 4;\n    (this || _global).o = createTypedArray(\"float32\", cLength);\n    (this || _global)._cmdf = false;\n    (this || _global)._omdf = false;\n    (this || _global)._collapsable = this.checkCollapsable();\n    (this || _global)._hasOpacity = cLength;\n    this.initDynamicPropertyContainer(container);\n    (this || _global).prop = PropertyFactory.getProp(elem, data.k, 1, null, this || _global);\n    (this || _global).k = (this || _global).prop.k;\n    this.getValue(true);\n  }\n\n  GradientProperty.prototype.comparePoints = function (values, points) {\n    var i = 0;\n    var len = (this || _global).o.length / 2;\n    var diff;\n\n    while (i < len) {\n      diff = Math.abs(values[i * 4] - values[points * 4 + i * 2]);\n\n      if (diff > 0.01) {\n        return false;\n      }\n\n      i += 1;\n    }\n\n    return true;\n  };\n\n  GradientProperty.prototype.checkCollapsable = function () {\n    if ((this || _global).o.length / 2 !== (this || _global).c.length / 4) {\n      return false;\n    }\n\n    if ((this || _global).data.k.k[0].s) {\n      var i = 0;\n      var len = (this || _global).data.k.k.length;\n\n      while (i < len) {\n        if (!this.comparePoints((this || _global).data.k.k[i].s, (this || _global).data.p)) {\n          return false;\n        }\n\n        i += 1;\n      }\n    } else if (!this.comparePoints((this || _global).data.k.k, (this || _global).data.p)) {\n      return false;\n    }\n\n    return true;\n  };\n\n  GradientProperty.prototype.getValue = function (forceRender) {\n    (this || _global).prop.getValue();\n\n    (this || _global)._mdf = false;\n    (this || _global)._cmdf = false;\n    (this || _global)._omdf = false;\n\n    if ((this || _global).prop._mdf || forceRender) {\n      var i;\n      var len = (this || _global).data.p * 4;\n      var mult;\n      var val;\n\n      for (i = 0; i < len; i += 1) {\n        mult = i % 4 === 0 ? 100 : 255;\n        val = Math.round((this || _global).prop.v[i] * mult);\n\n        if ((this || _global).c[i] !== val) {\n          (this || _global).c[i] = val;\n          (this || _global)._cmdf = !forceRender;\n        }\n      }\n\n      if ((this || _global).o.length) {\n        len = (this || _global).prop.v.length;\n\n        for (i = (this || _global).data.p * 4; i < len; i += 1) {\n          mult = i % 2 === 0 ? 100 : 1;\n          val = i % 2 === 0 ? Math.round((this || _global).prop.v[i] * 100) : (this || _global).prop.v[i];\n\n          if ((this || _global).o[i - (this || _global).data.p * 4] !== val) {\n            (this || _global).o[i - (this || _global).data.p * 4] = val;\n            (this || _global)._omdf = !forceRender;\n          }\n        }\n      }\n\n      (this || _global)._mdf = !forceRender;\n    }\n  };\n\n  extendPrototype([DynamicPropertyContainer], GradientProperty);\n  /* exported buildShapeString */\n\n  var buildShapeString = function (pathNodes, length, closed, mat) {\n    if (length === 0) {\n      return \"\";\n    }\n\n    var _o = pathNodes.o;\n    var _i = pathNodes.i;\n    var _v = pathNodes.v;\n    var i;\n    var shapeString = \" M\" + mat.applyToPointStringified(_v[0][0], _v[0][1]);\n\n    for (i = 1; i < length; i += 1) {\n      shapeString += \" C\" + mat.applyToPointStringified(_o[i - 1][0], _o[i - 1][1]) + \" \" + mat.applyToPointStringified(_i[i][0], _i[i][1]) + \" \" + mat.applyToPointStringified(_v[i][0], _v[i][1]);\n    }\n\n    if (closed && length) {\n      shapeString += \" C\" + mat.applyToPointStringified(_o[i - 1][0], _o[i - 1][1]) + \" \" + mat.applyToPointStringified(_i[0][0], _i[0][1]) + \" \" + mat.applyToPointStringified(_v[0][0], _v[0][1]);\n      shapeString += \"z\";\n    }\n\n    return shapeString;\n  };\n  /* global Howl */\n\n  /* exported audioControllerFactory */\n\n\n  var audioControllerFactory = function () {\n    function AudioController(audioFactory) {\n      (this || _global).audios = [];\n      (this || _global).audioFactory = audioFactory;\n      (this || _global)._volume = 1;\n      (this || _global)._isMuted = false;\n    }\n\n    AudioController.prototype = {\n      addAudio: function (audio) {\n        (this || _global).audios.push(audio);\n      },\n      pause: function () {\n        var i;\n        var len = (this || _global).audios.length;\n\n        for (i = 0; i < len; i += 1) {\n          (this || _global).audios[i].pause();\n        }\n      },\n      resume: function () {\n        var i;\n        var len = (this || _global).audios.length;\n\n        for (i = 0; i < len; i += 1) {\n          (this || _global).audios[i].resume();\n        }\n      },\n      setRate: function (rateValue) {\n        var i;\n        var len = (this || _global).audios.length;\n\n        for (i = 0; i < len; i += 1) {\n          (this || _global).audios[i].setRate(rateValue);\n        }\n      },\n      createAudio: function (assetPath) {\n        if ((this || _global).audioFactory) {\n          return this.audioFactory(assetPath);\n        }\n\n        if (Howl) {\n          return new Howl({\n            src: [assetPath]\n          });\n        }\n\n        return {\n          isPlaying: false,\n          play: function () {\n            (this || _global).isPlaying = true;\n          },\n          seek: function () {\n            (this || _global).isPlaying = false;\n          },\n          playing: function () {},\n          rate: function () {},\n          setVolume: function () {}\n        };\n      },\n      setAudioFactory: function (audioFactory) {\n        (this || _global).audioFactory = audioFactory;\n      },\n      setVolume: function (value) {\n        (this || _global)._volume = value;\n\n        this._updateVolume();\n      },\n      mute: function () {\n        (this || _global)._isMuted = true;\n\n        this._updateVolume();\n      },\n      unmute: function () {\n        (this || _global)._isMuted = false;\n\n        this._updateVolume();\n      },\n      getVolume: function () {\n        return (this || _global)._volume;\n      },\n      _updateVolume: function () {\n        var i;\n        var len = (this || _global).audios.length;\n\n        for (i = 0; i < len; i += 1) {\n          (this || _global).audios[i].volume((this || _global)._volume * ((this || _global)._isMuted ? 0 : 1));\n        }\n      }\n    };\n    return function () {\n      return new AudioController();\n    };\n  }();\n  /* global createTag, createNS, isSafari, assetLoader */\n\n  /* exported ImagePreloader */\n\n\n  var ImagePreloader = function () {\n    var proxyImage = function () {\n      var canvas = createTag(\"canvas\");\n      canvas.width = 1;\n      canvas.height = 1;\n      var ctx = canvas.getContext(\"2d\");\n      ctx.fillStyle = \"rgba(0,0,0,0)\";\n      ctx.fillRect(0, 0, 1, 1);\n      return canvas;\n    }();\n\n    function imageLoaded() {\n      (this || _global).loadedAssets += 1;\n\n      if ((this || _global).loadedAssets === (this || _global).totalImages && (this || _global).loadedFootagesCount === (this || _global).totalFootages) {\n        if ((this || _global).imagesLoadedCb) {\n          this.imagesLoadedCb(null);\n        }\n      }\n    }\n\n    function footageLoaded() {\n      (this || _global).loadedFootagesCount += 1;\n\n      if ((this || _global).loadedAssets === (this || _global).totalImages && (this || _global).loadedFootagesCount === (this || _global).totalFootages) {\n        if ((this || _global).imagesLoadedCb) {\n          this.imagesLoadedCb(null);\n        }\n      }\n    }\n\n    function getAssetsPath(assetData, assetsPath, originalPath) {\n      var path = \"\";\n\n      if (assetData.e) {\n        path = assetData.p;\n      } else if (assetsPath) {\n        var imagePath = assetData.p;\n\n        if (imagePath.indexOf(\"images/\") !== -1) {\n          imagePath = imagePath.split(\"/\")[1];\n        }\n\n        path = assetsPath + imagePath;\n      } else {\n        path = originalPath;\n        path += assetData.u ? assetData.u : \"\";\n        path += assetData.p;\n      }\n\n      return path;\n    }\n\n    function testImageLoaded(img) {\n      var _count = 0;\n      var intervalId = setInterval(function () {\n        var box = img.getBBox();\n\n        if (box.width || _count > 500) {\n          this._imageLoaded();\n\n          clearInterval(intervalId);\n        }\n\n        _count += 1;\n      }.bind(this || _global), 50);\n    }\n\n    function createImageData(assetData) {\n      var path = getAssetsPath(assetData, (this || _global).assetsPath, (this || _global).path);\n      var img = createNS(\"image\");\n\n      if (isSafari) {\n        this.testImageLoaded(img);\n      } else {\n        img.addEventListener(\"load\", (this || _global)._imageLoaded, false);\n      }\n\n      img.addEventListener(\"error\", function () {\n        ob.img = proxyImage;\n\n        this._imageLoaded();\n      }.bind(this || _global), false);\n      img.setAttributeNS(\"http://www.w3.org/1999/xlink\", \"href\", path);\n\n      if ((this || _global)._elementHelper.append) {\n        (this || _global)._elementHelper.append(img);\n      } else {\n        (this || _global)._elementHelper.appendChild(img);\n      }\n\n      var ob = {\n        img: img,\n        assetData: assetData\n      };\n      return ob;\n    }\n\n    function createImgData(assetData) {\n      var path = getAssetsPath(assetData, (this || _global).assetsPath, (this || _global).path);\n      var img = createTag(\"img\");\n      img.crossOrigin = \"anonymous\";\n      img.addEventListener(\"load\", (this || _global)._imageLoaded, false);\n      img.addEventListener(\"error\", function () {\n        ob.img = proxyImage;\n\n        this._imageLoaded();\n      }.bind(this || _global), false);\n      img.src = path;\n      var ob = {\n        img: img,\n        assetData: assetData\n      };\n      return ob;\n    }\n\n    function createFootageData(data) {\n      var ob = {\n        assetData: data\n      };\n      var path = getAssetsPath(data, (this || _global).assetsPath, (this || _global).path);\n      assetLoader.load(path, function (footageData) {\n        ob.img = footageData;\n\n        this._footageLoaded();\n      }.bind(this || _global), function () {\n        ob.img = {};\n\n        this._footageLoaded();\n      }.bind(this || _global));\n      return ob;\n    }\n\n    function loadAssets(assets, cb) {\n      (this || _global).imagesLoadedCb = cb;\n      var i;\n      var len = assets.length;\n\n      for (i = 0; i < len; i += 1) {\n        if (!assets[i].layers) {\n          if (!assets[i].t) {\n            (this || _global).totalImages += 1;\n\n            (this || _global).images.push(this._createImageData(assets[i]));\n          } else if (assets[i].t === 3) {\n            (this || _global).totalFootages += 1;\n\n            (this || _global).images.push(this.createFootageData(assets[i]));\n          }\n        }\n      }\n    }\n\n    function setPath(path) {\n      (this || _global).path = path || \"\";\n    }\n\n    function setAssetsPath(path) {\n      (this || _global).assetsPath = path || \"\";\n    }\n\n    function getAsset(assetData) {\n      var i = 0;\n      var len = (this || _global).images.length;\n\n      while (i < len) {\n        if ((this || _global).images[i].assetData === assetData) {\n          return (this || _global).images[i].img;\n        }\n\n        i += 1;\n      }\n\n      return null;\n    }\n\n    function destroy() {\n      (this || _global).imagesLoadedCb = null;\n      (this || _global).images.length = 0;\n    }\n\n    function loadedImages() {\n      return (this || _global).totalImages === (this || _global).loadedAssets;\n    }\n\n    function loadedFootages() {\n      return (this || _global).totalFootages === (this || _global).loadedFootagesCount;\n    }\n\n    function setCacheType(type, elementHelper) {\n      if (type === \"svg\") {\n        (this || _global)._elementHelper = elementHelper;\n        (this || _global)._createImageData = (this || _global).createImageData.bind(this || _global);\n      } else {\n        (this || _global)._createImageData = (this || _global).createImgData.bind(this || _global);\n      }\n    }\n\n    function ImagePreloaderFactory() {\n      (this || _global)._imageLoaded = imageLoaded.bind(this || _global);\n      (this || _global)._footageLoaded = footageLoaded.bind(this || _global);\n      (this || _global).testImageLoaded = testImageLoaded.bind(this || _global);\n      (this || _global).createFootageData = createFootageData.bind(this || _global);\n      (this || _global).assetsPath = \"\";\n      (this || _global).path = \"\";\n      (this || _global).totalImages = 0;\n      (this || _global).totalFootages = 0;\n      (this || _global).loadedAssets = 0;\n      (this || _global).loadedFootagesCount = 0;\n      (this || _global).imagesLoadedCb = null;\n      (this || _global).images = [];\n    }\n\n    ImagePreloaderFactory.prototype = {\n      loadAssets: loadAssets,\n      setAssetsPath: setAssetsPath,\n      setPath: setPath,\n      loadedImages: loadedImages,\n      loadedFootages: loadedFootages,\n      destroy: destroy,\n      getAsset: getAsset,\n      createImgData: createImgData,\n      createImageData: createImageData,\n      imageLoaded: imageLoaded,\n      footageLoaded: footageLoaded,\n      setCacheType: setCacheType\n    };\n    return ImagePreloaderFactory;\n  }();\n  /* exported featureSupport */\n\n\n  var featureSupport = function () {\n    var ob = {\n      maskType: true\n    };\n\n    if (/MSIE 10/i.test(navigator.userAgent) || /MSIE 9/i.test(navigator.userAgent) || /rv:11.0/i.test(navigator.userAgent) || /Edge\\/\\d./i.test(navigator.userAgent)) {\n      ob.maskType = false;\n    }\n\n    return ob;\n  }();\n  /* global createNS */\n\n  /* exported filtersFactory */\n\n\n  var filtersFactory = function () {\n    var ob = {};\n    ob.createFilter = createFilter;\n    ob.createAlphaToLuminanceFilter = createAlphaToLuminanceFilter;\n\n    function createFilter(filId, skipCoordinates) {\n      var fil = createNS(\"filter\");\n      fil.setAttribute(\"id\", filId);\n\n      if (skipCoordinates !== true) {\n        fil.setAttribute(\"filterUnits\", \"objectBoundingBox\");\n        fil.setAttribute(\"x\", \"0%\");\n        fil.setAttribute(\"y\", \"0%\");\n        fil.setAttribute(\"width\", \"100%\");\n        fil.setAttribute(\"height\", \"100%\");\n      }\n\n      return fil;\n    }\n\n    function createAlphaToLuminanceFilter() {\n      var feColorMatrix = createNS(\"feColorMatrix\");\n      feColorMatrix.setAttribute(\"type\", \"matrix\");\n      feColorMatrix.setAttribute(\"color-interpolation-filters\", \"sRGB\");\n      feColorMatrix.setAttribute(\"values\", \"0 0 0 1 0  0 0 0 1 0  0 0 0 1 0  0 0 0 1 1\");\n      return feColorMatrix;\n    }\n\n    return ob;\n  }();\n  /* exported assetLoader */\n\n\n  var assetLoader = function () {\n    function formatResponse(xhr) {\n      if (xhr.response && typeof xhr.response === \"object\") {\n        return xhr.response;\n      }\n\n      if (xhr.response && typeof xhr.response === \"string\") {\n        return JSON.parse(xhr.response);\n      }\n\n      if (xhr.responseText) {\n        return JSON.parse(xhr.responseText);\n      }\n\n      return null;\n    }\n\n    function loadAsset(path, callback, errorCallback) {\n      var response;\n      var xhr = new XMLHttpRequest(); // set responseType after calling open or IE will break.\n\n      try {\n        // This crashes on Android WebView prior to KitKat\n        xhr.responseType = \"json\";\n      } catch (err) {} // eslint-disable-line no-empty\n\n\n      xhr.onreadystatechange = function () {\n        if (xhr.readyState === 4) {\n          if (xhr.status === 200) {\n            response = formatResponse(xhr);\n            callback(response);\n          } else {\n            try {\n              response = formatResponse(xhr);\n              callback(response);\n            } catch (err) {\n              if (errorCallback) {\n                errorCallback(err);\n              }\n            }\n          }\n        }\n      };\n\n      xhr.open(\"GET\", path, true);\n      xhr.send();\n    }\n\n    return {\n      load: loadAsset\n    };\n  }();\n  /* global createSizedArray, PropertyFactory, TextAnimatorDataProperty, bez, addHueToRGB,\r\n    addSaturationToRGB, addBrightnessToRGB, LetterProps, Matrix, extendPrototype, DynamicPropertyContainer */\n\n\n  function TextAnimatorProperty(textData, renderType, elem) {\n    (this || _global)._isFirstFrame = true;\n    (this || _global)._hasMaskedPath = false;\n    (this || _global)._frameId = -1;\n    (this || _global)._textData = textData;\n    (this || _global)._renderType = renderType;\n    (this || _global)._elem = elem;\n    (this || _global)._animatorsData = createSizedArray((this || _global)._textData.a.length);\n    (this || _global)._pathData = {};\n    (this || _global)._moreOptions = {\n      alignment: {}\n    };\n    (this || _global).renderedLetters = [];\n    (this || _global).lettersChangedFlag = false;\n    this.initDynamicPropertyContainer(elem);\n  }\n\n  TextAnimatorProperty.prototype.searchProperties = function () {\n    var i;\n    var len = (this || _global)._textData.a.length;\n    var animatorProps;\n    var getProp = PropertyFactory.getProp;\n\n    for (i = 0; i < len; i += 1) {\n      animatorProps = (this || _global)._textData.a[i];\n      (this || _global)._animatorsData[i] = new TextAnimatorDataProperty((this || _global)._elem, animatorProps, this || _global);\n    }\n\n    if ((this || _global)._textData.p && \"m\" in (this || _global)._textData.p) {\n      (this || _global)._pathData = {\n        f: getProp((this || _global)._elem, (this || _global)._textData.p.f, 0, 0, this || _global),\n        l: getProp((this || _global)._elem, (this || _global)._textData.p.l, 0, 0, this || _global),\n        r: (this || _global)._textData.p.r,\n        m: (this || _global)._elem.maskManager.getMaskProperty((this || _global)._textData.p.m)\n      };\n      (this || _global)._hasMaskedPath = true;\n    } else {\n      (this || _global)._hasMaskedPath = false;\n    }\n\n    (this || _global)._moreOptions.alignment = getProp((this || _global)._elem, (this || _global)._textData.m.a, 1, 0, this || _global);\n  };\n\n  TextAnimatorProperty.prototype.getMeasures = function (documentData, lettersChangedFlag) {\n    (this || _global).lettersChangedFlag = lettersChangedFlag;\n\n    if (!(this || _global)._mdf && !(this || _global)._isFirstFrame && !lettersChangedFlag && (!(this || _global)._hasMaskedPath || !(this || _global)._pathData.m._mdf)) {\n      return;\n    }\n\n    (this || _global)._isFirstFrame = false;\n    var alignment = (this || _global)._moreOptions.alignment.v;\n    var animators = (this || _global)._animatorsData;\n    var textData = (this || _global)._textData;\n    var matrixHelper = (this || _global).mHelper;\n    var renderType = (this || _global)._renderType;\n    var renderedLettersCount = (this || _global).renderedLetters.length;\n    var xPos;\n    var yPos;\n    var i;\n    var len;\n    var letters = documentData.l;\n    var pathInfo;\n    var currentLength;\n    var currentPoint;\n    var segmentLength;\n    var flag;\n    var pointInd;\n    var segmentInd;\n    var prevPoint;\n    var points;\n    var segments;\n    var partialLength;\n    var totalLength;\n    var perc;\n    var tanAngle;\n    var mask;\n\n    if ((this || _global)._hasMaskedPath) {\n      mask = (this || _global)._pathData.m;\n\n      if (!(this || _global)._pathData.n || (this || _global)._pathData._mdf) {\n        var paths = mask.v;\n\n        if ((this || _global)._pathData.r) {\n          paths = paths.reverse();\n        } // TODO: release bezier data cached from previous pathInfo: this._pathData.pi\n\n\n        pathInfo = {\n          tLength: 0,\n          segments: []\n        };\n        len = paths._length - 1;\n        var bezierData;\n        totalLength = 0;\n\n        for (i = 0; i < len; i += 1) {\n          bezierData = bez.buildBezierData(paths.v[i], paths.v[i + 1], [paths.o[i][0] - paths.v[i][0], paths.o[i][1] - paths.v[i][1]], [paths.i[i + 1][0] - paths.v[i + 1][0], paths.i[i + 1][1] - paths.v[i + 1][1]]);\n          pathInfo.tLength += bezierData.segmentLength;\n          pathInfo.segments.push(bezierData);\n          totalLength += bezierData.segmentLength;\n        }\n\n        i = len;\n\n        if (mask.v.c) {\n          bezierData = bez.buildBezierData(paths.v[i], paths.v[0], [paths.o[i][0] - paths.v[i][0], paths.o[i][1] - paths.v[i][1]], [paths.i[0][0] - paths.v[0][0], paths.i[0][1] - paths.v[0][1]]);\n          pathInfo.tLength += bezierData.segmentLength;\n          pathInfo.segments.push(bezierData);\n          totalLength += bezierData.segmentLength;\n        }\n\n        (this || _global)._pathData.pi = pathInfo;\n      }\n\n      pathInfo = (this || _global)._pathData.pi;\n      currentLength = (this || _global)._pathData.f.v;\n      segmentInd = 0;\n      pointInd = 1;\n      segmentLength = 0;\n      flag = true;\n      segments = pathInfo.segments;\n\n      if (currentLength < 0 && mask.v.c) {\n        if (pathInfo.tLength < Math.abs(currentLength)) {\n          currentLength = -Math.abs(currentLength) % pathInfo.tLength;\n        }\n\n        segmentInd = segments.length - 1;\n        points = segments[segmentInd].points;\n        pointInd = points.length - 1;\n\n        while (currentLength < 0) {\n          currentLength += points[pointInd].partialLength;\n          pointInd -= 1;\n\n          if (pointInd < 0) {\n            segmentInd -= 1;\n            points = segments[segmentInd].points;\n            pointInd = points.length - 1;\n          }\n        }\n      }\n\n      points = segments[segmentInd].points;\n      prevPoint = points[pointInd - 1];\n      currentPoint = points[pointInd];\n      partialLength = currentPoint.partialLength;\n    }\n\n    len = letters.length;\n    xPos = 0;\n    yPos = 0;\n    var yOff = documentData.finalSize * 1.2 * 0.714;\n    var firstLine = true;\n    var animatorProps;\n    var animatorSelector;\n    var j;\n    var jLen;\n    var letterValue;\n    jLen = animators.length;\n    var mult;\n    var ind = -1;\n    var offf;\n    var xPathPos;\n    var yPathPos;\n    var initPathPos = currentLength;\n    var initSegmentInd = segmentInd;\n    var initPointInd = pointInd;\n    var currentLine = -1;\n    var elemOpacity;\n    var sc;\n    var sw;\n    var fc;\n    var k;\n    var letterSw;\n    var letterSc;\n    var letterFc;\n    var letterM = \"\";\n    var letterP = (this || _global).defaultPropsArray;\n    var letterO; //\n\n    if (documentData.j === 2 || documentData.j === 1) {\n      var animatorJustifyOffset = 0;\n      var animatorFirstCharOffset = 0;\n      var justifyOffsetMult = documentData.j === 2 ? -0.5 : -1;\n      var lastIndex = 0;\n      var isNewLine = true;\n\n      for (i = 0; i < len; i += 1) {\n        if (letters[i].n) {\n          if (animatorJustifyOffset) {\n            animatorJustifyOffset += animatorFirstCharOffset;\n          }\n\n          while (lastIndex < i) {\n            letters[lastIndex].animatorJustifyOffset = animatorJustifyOffset;\n            lastIndex += 1;\n          }\n\n          animatorJustifyOffset = 0;\n          isNewLine = true;\n        } else {\n          for (j = 0; j < jLen; j += 1) {\n            animatorProps = animators[j].a;\n\n            if (animatorProps.t.propType) {\n              if (isNewLine && documentData.j === 2) {\n                animatorFirstCharOffset += animatorProps.t.v * justifyOffsetMult;\n              }\n\n              animatorSelector = animators[j].s;\n              mult = animatorSelector.getMult(letters[i].anIndexes[j], textData.a[j].s.totalChars);\n\n              if (mult.length) {\n                animatorJustifyOffset += animatorProps.t.v * mult[0] * justifyOffsetMult;\n              } else {\n                animatorJustifyOffset += animatorProps.t.v * mult * justifyOffsetMult;\n              }\n            }\n          }\n\n          isNewLine = false;\n        }\n      }\n\n      if (animatorJustifyOffset) {\n        animatorJustifyOffset += animatorFirstCharOffset;\n      }\n\n      while (lastIndex < i) {\n        letters[lastIndex].animatorJustifyOffset = animatorJustifyOffset;\n        lastIndex += 1;\n      }\n    } //\n\n\n    for (i = 0; i < len; i += 1) {\n      matrixHelper.reset();\n      elemOpacity = 1;\n\n      if (letters[i].n) {\n        xPos = 0;\n        yPos += documentData.yOffset;\n        yPos += firstLine ? 1 : 0;\n        currentLength = initPathPos;\n        firstLine = false;\n\n        if ((this || _global)._hasMaskedPath) {\n          segmentInd = initSegmentInd;\n          pointInd = initPointInd;\n          points = segments[segmentInd].points;\n          prevPoint = points[pointInd - 1];\n          currentPoint = points[pointInd];\n          partialLength = currentPoint.partialLength;\n          segmentLength = 0;\n        }\n\n        letterM = \"\";\n        letterFc = \"\";\n        letterSw = \"\";\n        letterO = \"\";\n        letterP = (this || _global).defaultPropsArray;\n      } else {\n        if ((this || _global)._hasMaskedPath) {\n          if (currentLine !== letters[i].line) {\n            switch (documentData.j) {\n              case 1:\n                currentLength += totalLength - documentData.lineWidths[letters[i].line];\n                break;\n\n              case 2:\n                currentLength += (totalLength - documentData.lineWidths[letters[i].line]) / 2;\n                break;\n\n              default:\n                break;\n            }\n\n            currentLine = letters[i].line;\n          }\n\n          if (ind !== letters[i].ind) {\n            if (letters[ind]) {\n              currentLength += letters[ind].extra;\n            }\n\n            currentLength += letters[i].an / 2;\n            ind = letters[i].ind;\n          }\n\n          currentLength += alignment[0] * letters[i].an * 0.005;\n          var animatorOffset = 0;\n\n          for (j = 0; j < jLen; j += 1) {\n            animatorProps = animators[j].a;\n\n            if (animatorProps.p.propType) {\n              animatorSelector = animators[j].s;\n              mult = animatorSelector.getMult(letters[i].anIndexes[j], textData.a[j].s.totalChars);\n\n              if (mult.length) {\n                animatorOffset += animatorProps.p.v[0] * mult[0];\n              } else {\n                animatorOffset += animatorProps.p.v[0] * mult;\n              }\n            }\n\n            if (animatorProps.a.propType) {\n              animatorSelector = animators[j].s;\n              mult = animatorSelector.getMult(letters[i].anIndexes[j], textData.a[j].s.totalChars);\n\n              if (mult.length) {\n                animatorOffset += animatorProps.a.v[0] * mult[0];\n              } else {\n                animatorOffset += animatorProps.a.v[0] * mult;\n              }\n            }\n          }\n\n          flag = true;\n\n          while (flag) {\n            if (segmentLength + partialLength >= currentLength + animatorOffset || !points) {\n              perc = (currentLength + animatorOffset - segmentLength) / currentPoint.partialLength;\n              xPathPos = prevPoint.point[0] + (currentPoint.point[0] - prevPoint.point[0]) * perc;\n              yPathPos = prevPoint.point[1] + (currentPoint.point[1] - prevPoint.point[1]) * perc;\n              matrixHelper.translate(-alignment[0] * letters[i].an * 0.005, -(alignment[1] * yOff) * 0.01);\n              flag = false;\n            } else if (points) {\n              segmentLength += currentPoint.partialLength;\n              pointInd += 1;\n\n              if (pointInd >= points.length) {\n                pointInd = 0;\n                segmentInd += 1;\n\n                if (!segments[segmentInd]) {\n                  if (mask.v.c) {\n                    pointInd = 0;\n                    segmentInd = 0;\n                    points = segments[segmentInd].points;\n                  } else {\n                    segmentLength -= currentPoint.partialLength;\n                    points = null;\n                  }\n                } else {\n                  points = segments[segmentInd].points;\n                }\n              }\n\n              if (points) {\n                prevPoint = currentPoint;\n                currentPoint = points[pointInd];\n                partialLength = currentPoint.partialLength;\n              }\n            }\n          }\n\n          offf = letters[i].an / 2 - letters[i].add;\n          matrixHelper.translate(-offf, 0, 0);\n        } else {\n          offf = letters[i].an / 2 - letters[i].add;\n          matrixHelper.translate(-offf, 0, 0); // Grouping alignment\n\n          matrixHelper.translate(-alignment[0] * letters[i].an * 0.005, -alignment[1] * yOff * 0.01, 0);\n        }\n\n        for (j = 0; j < jLen; j += 1) {\n          animatorProps = animators[j].a;\n\n          if (animatorProps.t.propType) {\n            animatorSelector = animators[j].s;\n            mult = animatorSelector.getMult(letters[i].anIndexes[j], textData.a[j].s.totalChars); // This condition is to prevent applying tracking to first character in each line. Might be better to use a boolean \"isNewLine\"\n\n            if (xPos !== 0 || documentData.j !== 0) {\n              if ((this || _global)._hasMaskedPath) {\n                if (mult.length) {\n                  currentLength += animatorProps.t.v * mult[0];\n                } else {\n                  currentLength += animatorProps.t.v * mult;\n                }\n              } else if (mult.length) {\n                xPos += animatorProps.t.v * mult[0];\n              } else {\n                xPos += animatorProps.t.v * mult;\n              }\n            }\n          }\n        }\n\n        if (documentData.strokeWidthAnim) {\n          sw = documentData.sw || 0;\n        }\n\n        if (documentData.strokeColorAnim) {\n          if (documentData.sc) {\n            sc = [documentData.sc[0], documentData.sc[1], documentData.sc[2]];\n          } else {\n            sc = [0, 0, 0];\n          }\n        }\n\n        if (documentData.fillColorAnim && documentData.fc) {\n          fc = [documentData.fc[0], documentData.fc[1], documentData.fc[2]];\n        }\n\n        for (j = 0; j < jLen; j += 1) {\n          animatorProps = animators[j].a;\n\n          if (animatorProps.a.propType) {\n            animatorSelector = animators[j].s;\n            mult = animatorSelector.getMult(letters[i].anIndexes[j], textData.a[j].s.totalChars);\n\n            if (mult.length) {\n              matrixHelper.translate(-animatorProps.a.v[0] * mult[0], -animatorProps.a.v[1] * mult[1], animatorProps.a.v[2] * mult[2]);\n            } else {\n              matrixHelper.translate(-animatorProps.a.v[0] * mult, -animatorProps.a.v[1] * mult, animatorProps.a.v[2] * mult);\n            }\n          }\n        }\n\n        for (j = 0; j < jLen; j += 1) {\n          animatorProps = animators[j].a;\n\n          if (animatorProps.s.propType) {\n            animatorSelector = animators[j].s;\n            mult = animatorSelector.getMult(letters[i].anIndexes[j], textData.a[j].s.totalChars);\n\n            if (mult.length) {\n              matrixHelper.scale(1 + (animatorProps.s.v[0] - 1) * mult[0], 1 + (animatorProps.s.v[1] - 1) * mult[1], 1);\n            } else {\n              matrixHelper.scale(1 + (animatorProps.s.v[0] - 1) * mult, 1 + (animatorProps.s.v[1] - 1) * mult, 1);\n            }\n          }\n        }\n\n        for (j = 0; j < jLen; j += 1) {\n          animatorProps = animators[j].a;\n          animatorSelector = animators[j].s;\n          mult = animatorSelector.getMult(letters[i].anIndexes[j], textData.a[j].s.totalChars);\n\n          if (animatorProps.sk.propType) {\n            if (mult.length) {\n              matrixHelper.skewFromAxis(-animatorProps.sk.v * mult[0], animatorProps.sa.v * mult[1]);\n            } else {\n              matrixHelper.skewFromAxis(-animatorProps.sk.v * mult, animatorProps.sa.v * mult);\n            }\n          }\n\n          if (animatorProps.r.propType) {\n            if (mult.length) {\n              matrixHelper.rotateZ(-animatorProps.r.v * mult[2]);\n            } else {\n              matrixHelper.rotateZ(-animatorProps.r.v * mult);\n            }\n          }\n\n          if (animatorProps.ry.propType) {\n            if (mult.length) {\n              matrixHelper.rotateY(animatorProps.ry.v * mult[1]);\n            } else {\n              matrixHelper.rotateY(animatorProps.ry.v * mult);\n            }\n          }\n\n          if (animatorProps.rx.propType) {\n            if (mult.length) {\n              matrixHelper.rotateX(animatorProps.rx.v * mult[0]);\n            } else {\n              matrixHelper.rotateX(animatorProps.rx.v * mult);\n            }\n          }\n\n          if (animatorProps.o.propType) {\n            if (mult.length) {\n              elemOpacity += (animatorProps.o.v * mult[0] - elemOpacity) * mult[0];\n            } else {\n              elemOpacity += (animatorProps.o.v * mult - elemOpacity) * mult;\n            }\n          }\n\n          if (documentData.strokeWidthAnim && animatorProps.sw.propType) {\n            if (mult.length) {\n              sw += animatorProps.sw.v * mult[0];\n            } else {\n              sw += animatorProps.sw.v * mult;\n            }\n          }\n\n          if (documentData.strokeColorAnim && animatorProps.sc.propType) {\n            for (k = 0; k < 3; k += 1) {\n              if (mult.length) {\n                sc[k] += (animatorProps.sc.v[k] - sc[k]) * mult[0];\n              } else {\n                sc[k] += (animatorProps.sc.v[k] - sc[k]) * mult;\n              }\n            }\n          }\n\n          if (documentData.fillColorAnim && documentData.fc) {\n            if (animatorProps.fc.propType) {\n              for (k = 0; k < 3; k += 1) {\n                if (mult.length) {\n                  fc[k] += (animatorProps.fc.v[k] - fc[k]) * mult[0];\n                } else {\n                  fc[k] += (animatorProps.fc.v[k] - fc[k]) * mult;\n                }\n              }\n            }\n\n            if (animatorProps.fh.propType) {\n              if (mult.length) {\n                fc = addHueToRGB(fc, animatorProps.fh.v * mult[0]);\n              } else {\n                fc = addHueToRGB(fc, animatorProps.fh.v * mult);\n              }\n            }\n\n            if (animatorProps.fs.propType) {\n              if (mult.length) {\n                fc = addSaturationToRGB(fc, animatorProps.fs.v * mult[0]);\n              } else {\n                fc = addSaturationToRGB(fc, animatorProps.fs.v * mult);\n              }\n            }\n\n            if (animatorProps.fb.propType) {\n              if (mult.length) {\n                fc = addBrightnessToRGB(fc, animatorProps.fb.v * mult[0]);\n              } else {\n                fc = addBrightnessToRGB(fc, animatorProps.fb.v * mult);\n              }\n            }\n          }\n        }\n\n        for (j = 0; j < jLen; j += 1) {\n          animatorProps = animators[j].a;\n\n          if (animatorProps.p.propType) {\n            animatorSelector = animators[j].s;\n            mult = animatorSelector.getMult(letters[i].anIndexes[j], textData.a[j].s.totalChars);\n\n            if ((this || _global)._hasMaskedPath) {\n              if (mult.length) {\n                matrixHelper.translate(0, animatorProps.p.v[1] * mult[0], -animatorProps.p.v[2] * mult[1]);\n              } else {\n                matrixHelper.translate(0, animatorProps.p.v[1] * mult, -animatorProps.p.v[2] * mult);\n              }\n            } else if (mult.length) {\n              matrixHelper.translate(animatorProps.p.v[0] * mult[0], animatorProps.p.v[1] * mult[1], -animatorProps.p.v[2] * mult[2]);\n            } else {\n              matrixHelper.translate(animatorProps.p.v[0] * mult, animatorProps.p.v[1] * mult, -animatorProps.p.v[2] * mult);\n            }\n          }\n        }\n\n        if (documentData.strokeWidthAnim) {\n          letterSw = sw < 0 ? 0 : sw;\n        }\n\n        if (documentData.strokeColorAnim) {\n          letterSc = \"rgb(\" + Math.round(sc[0] * 255) + \",\" + Math.round(sc[1] * 255) + \",\" + Math.round(sc[2] * 255) + \")\";\n        }\n\n        if (documentData.fillColorAnim && documentData.fc) {\n          letterFc = \"rgb(\" + Math.round(fc[0] * 255) + \",\" + Math.round(fc[1] * 255) + \",\" + Math.round(fc[2] * 255) + \")\";\n        }\n\n        if ((this || _global)._hasMaskedPath) {\n          matrixHelper.translate(0, -documentData.ls);\n          matrixHelper.translate(0, alignment[1] * yOff * 0.01 + yPos, 0);\n\n          if (textData.p.p) {\n            tanAngle = (currentPoint.point[1] - prevPoint.point[1]) / (currentPoint.point[0] - prevPoint.point[0]);\n            var rot = Math.atan(tanAngle) * 180 / Math.PI;\n\n            if (currentPoint.point[0] < prevPoint.point[0]) {\n              rot += 180;\n            }\n\n            matrixHelper.rotate(-rot * Math.PI / 180);\n          }\n\n          matrixHelper.translate(xPathPos, yPathPos, 0);\n          currentLength -= alignment[0] * letters[i].an * 0.005;\n\n          if (letters[i + 1] && ind !== letters[i + 1].ind) {\n            currentLength += letters[i].an / 2;\n            currentLength += documentData.tr * 0.001 * documentData.finalSize;\n          }\n        } else {\n          matrixHelper.translate(xPos, yPos, 0);\n\n          if (documentData.ps) {\n            // matrixHelper.translate(documentData.ps[0],documentData.ps[1],0);\n            matrixHelper.translate(documentData.ps[0], documentData.ps[1] + documentData.ascent, 0);\n          }\n\n          switch (documentData.j) {\n            case 1:\n              matrixHelper.translate(letters[i].animatorJustifyOffset + documentData.justifyOffset + (documentData.boxWidth - documentData.lineWidths[letters[i].line]), 0, 0);\n              break;\n\n            case 2:\n              matrixHelper.translate(letters[i].animatorJustifyOffset + documentData.justifyOffset + (documentData.boxWidth - documentData.lineWidths[letters[i].line]) / 2, 0, 0);\n              break;\n\n            default:\n              break;\n          }\n\n          matrixHelper.translate(0, -documentData.ls);\n          matrixHelper.translate(offf, 0, 0);\n          matrixHelper.translate(alignment[0] * letters[i].an * 0.005, alignment[1] * yOff * 0.01, 0);\n          xPos += letters[i].l + documentData.tr * 0.001 * documentData.finalSize;\n        }\n\n        if (renderType === \"html\") {\n          letterM = matrixHelper.toCSS();\n        } else if (renderType === \"svg\") {\n          letterM = matrixHelper.to2dCSS();\n        } else {\n          letterP = [matrixHelper.props[0], matrixHelper.props[1], matrixHelper.props[2], matrixHelper.props[3], matrixHelper.props[4], matrixHelper.props[5], matrixHelper.props[6], matrixHelper.props[7], matrixHelper.props[8], matrixHelper.props[9], matrixHelper.props[10], matrixHelper.props[11], matrixHelper.props[12], matrixHelper.props[13], matrixHelper.props[14], matrixHelper.props[15]];\n        }\n\n        letterO = elemOpacity;\n      }\n\n      if (renderedLettersCount <= i) {\n        letterValue = new LetterProps(letterO, letterSw, letterSc, letterFc, letterM, letterP);\n\n        (this || _global).renderedLetters.push(letterValue);\n\n        renderedLettersCount += 1;\n        (this || _global).lettersChangedFlag = true;\n      } else {\n        letterValue = (this || _global).renderedLetters[i];\n        (this || _global).lettersChangedFlag = letterValue.update(letterO, letterSw, letterSc, letterFc, letterM, letterP) || (this || _global).lettersChangedFlag;\n      }\n    }\n  };\n\n  TextAnimatorProperty.prototype.getValue = function () {\n    if ((this || _global)._elem.globalData.frameId === (this || _global)._frameId) {\n      return;\n    }\n\n    (this || _global)._frameId = (this || _global)._elem.globalData.frameId;\n    this.iterateDynamicProperties();\n  };\n\n  TextAnimatorProperty.prototype.mHelper = new Matrix();\n  TextAnimatorProperty.prototype.defaultPropsArray = [];\n  extendPrototype([DynamicPropertyContainer], TextAnimatorProperty);\n  /* global PropertyFactory, degToRads, TextSelectorProp */\n\n  /* exported TextAnimatorDataProperty */\n\n  function TextAnimatorDataProperty(elem, animatorProps, container) {\n    var defaultData = {\n      propType: false\n    };\n    var getProp = PropertyFactory.getProp;\n    var textAnimatorAnimatables = animatorProps.a;\n    (this || _global).a = {\n      r: textAnimatorAnimatables.r ? getProp(elem, textAnimatorAnimatables.r, 0, degToRads, container) : defaultData,\n      rx: textAnimatorAnimatables.rx ? getProp(elem, textAnimatorAnimatables.rx, 0, degToRads, container) : defaultData,\n      ry: textAnimatorAnimatables.ry ? getProp(elem, textAnimatorAnimatables.ry, 0, degToRads, container) : defaultData,\n      sk: textAnimatorAnimatables.sk ? getProp(elem, textAnimatorAnimatables.sk, 0, degToRads, container) : defaultData,\n      sa: textAnimatorAnimatables.sa ? getProp(elem, textAnimatorAnimatables.sa, 0, degToRads, container) : defaultData,\n      s: textAnimatorAnimatables.s ? getProp(elem, textAnimatorAnimatables.s, 1, 0.01, container) : defaultData,\n      a: textAnimatorAnimatables.a ? getProp(elem, textAnimatorAnimatables.a, 1, 0, container) : defaultData,\n      o: textAnimatorAnimatables.o ? getProp(elem, textAnimatorAnimatables.o, 0, 0.01, container) : defaultData,\n      p: textAnimatorAnimatables.p ? getProp(elem, textAnimatorAnimatables.p, 1, 0, container) : defaultData,\n      sw: textAnimatorAnimatables.sw ? getProp(elem, textAnimatorAnimatables.sw, 0, 0, container) : defaultData,\n      sc: textAnimatorAnimatables.sc ? getProp(elem, textAnimatorAnimatables.sc, 1, 0, container) : defaultData,\n      fc: textAnimatorAnimatables.fc ? getProp(elem, textAnimatorAnimatables.fc, 1, 0, container) : defaultData,\n      fh: textAnimatorAnimatables.fh ? getProp(elem, textAnimatorAnimatables.fh, 0, 0, container) : defaultData,\n      fs: textAnimatorAnimatables.fs ? getProp(elem, textAnimatorAnimatables.fs, 0, 0.01, container) : defaultData,\n      fb: textAnimatorAnimatables.fb ? getProp(elem, textAnimatorAnimatables.fb, 0, 0.01, container) : defaultData,\n      t: textAnimatorAnimatables.t ? getProp(elem, textAnimatorAnimatables.t, 0, 0, container) : defaultData\n    };\n    (this || _global).s = TextSelectorProp.getTextSelectorProp(elem, animatorProps.s, container);\n    (this || _global).s.t = animatorProps.s.t;\n  }\n\n  function LetterProps(o, sw, sc, fc, m, p) {\n    (this || _global).o = o;\n    (this || _global).sw = sw;\n    (this || _global).sc = sc;\n    (this || _global).fc = fc;\n    (this || _global).m = m;\n    (this || _global).p = p;\n    (this || _global)._mdf = {\n      o: true,\n      sw: !!sw,\n      sc: !!sc,\n      fc: !!fc,\n      m: true,\n      p: true\n    };\n  }\n\n  LetterProps.prototype.update = function (o, sw, sc, fc, m, p) {\n    (this || _global)._mdf.o = false;\n    (this || _global)._mdf.sw = false;\n    (this || _global)._mdf.sc = false;\n    (this || _global)._mdf.fc = false;\n    (this || _global)._mdf.m = false;\n    (this || _global)._mdf.p = false;\n    var updated = false;\n\n    if ((this || _global).o !== o) {\n      (this || _global).o = o;\n      (this || _global)._mdf.o = true;\n      updated = true;\n    }\n\n    if ((this || _global).sw !== sw) {\n      (this || _global).sw = sw;\n      (this || _global)._mdf.sw = true;\n      updated = true;\n    }\n\n    if ((this || _global).sc !== sc) {\n      (this || _global).sc = sc;\n      (this || _global)._mdf.sc = true;\n      updated = true;\n    }\n\n    if ((this || _global).fc !== fc) {\n      (this || _global).fc = fc;\n      (this || _global)._mdf.fc = true;\n      updated = true;\n    }\n\n    if ((this || _global).m !== m) {\n      (this || _global).m = m;\n      (this || _global)._mdf.m = true;\n      updated = true;\n    }\n\n    if (p.length && ((this || _global).p[0] !== p[0] || (this || _global).p[1] !== p[1] || (this || _global).p[4] !== p[4] || (this || _global).p[5] !== p[5] || (this || _global).p[12] !== p[12] || (this || _global).p[13] !== p[13])) {\n      (this || _global).p = p;\n      (this || _global)._mdf.p = true;\n      updated = true;\n    }\n\n    return updated;\n  };\n  /* global FontManager, initialDefaultFrame, getFontProperties */\n\n  /* exported TextProperty */\n\n\n  function TextProperty(elem, data) {\n    (this || _global)._frameId = initialDefaultFrame;\n    (this || _global).pv = \"\";\n    (this || _global).v = \"\";\n    (this || _global).kf = false;\n    (this || _global)._isFirstFrame = true;\n    (this || _global)._mdf = false;\n    (this || _global).data = data;\n    (this || _global).elem = elem;\n    (this || _global).comp = (this || _global).elem.comp;\n    (this || _global).keysIndex = 0;\n    (this || _global).canResize = false;\n    (this || _global).minimumFontSize = 1;\n    (this || _global).effectsSequence = [];\n    (this || _global).currentData = {\n      ascent: 0,\n      boxWidth: (this || _global).defaultBoxWidth,\n      f: \"\",\n      fStyle: \"\",\n      fWeight: \"\",\n      fc: \"\",\n      j: \"\",\n      justifyOffset: \"\",\n      l: [],\n      lh: 0,\n      lineWidths: [],\n      ls: \"\",\n      of: \"\",\n      s: \"\",\n      sc: \"\",\n      sw: 0,\n      t: 0,\n      tr: 0,\n      sz: 0,\n      ps: null,\n      fillColorAnim: false,\n      strokeColorAnim: false,\n      strokeWidthAnim: false,\n      yOffset: 0,\n      finalSize: 0,\n      finalText: [],\n      finalLineHeight: 0,\n      __complete: false\n    };\n    this.copyData((this || _global).currentData, (this || _global).data.d.k[0].s);\n\n    if (!this.searchProperty()) {\n      this.completeTextData((this || _global).currentData);\n    }\n  }\n\n  TextProperty.prototype.defaultBoxWidth = [0, 0];\n\n  TextProperty.prototype.copyData = function (obj, data) {\n    for (var s in data) {\n      if (Object.prototype.hasOwnProperty.call(data, s)) {\n        obj[s] = data[s];\n      }\n    }\n\n    return obj;\n  };\n\n  TextProperty.prototype.setCurrentData = function (data) {\n    if (!data.__complete) {\n      this.completeTextData(data);\n    }\n\n    (this || _global).currentData = data;\n    (this || _global).currentData.boxWidth = (this || _global).currentData.boxWidth || (this || _global).defaultBoxWidth;\n    (this || _global)._mdf = true;\n  };\n\n  TextProperty.prototype.searchProperty = function () {\n    return this.searchKeyframes();\n  };\n\n  TextProperty.prototype.searchKeyframes = function () {\n    (this || _global).kf = (this || _global).data.d.k.length > 1;\n\n    if ((this || _global).kf) {\n      this.addEffect((this || _global).getKeyframeValue.bind(this || _global));\n    }\n\n    return (this || _global).kf;\n  };\n\n  TextProperty.prototype.addEffect = function (effectFunction) {\n    (this || _global).effectsSequence.push(effectFunction);\n\n    (this || _global).elem.addDynamicProperty(this || _global);\n  };\n\n  TextProperty.prototype.getValue = function (_finalValue) {\n    if (((this || _global).elem.globalData.frameId === (this || _global).frameId || !(this || _global).effectsSequence.length) && !_finalValue) {\n      return;\n    }\n\n    (this || _global).currentData.t = (this || _global).data.d.k[(this || _global).keysIndex].s.t;\n    var currentValue = (this || _global).currentData;\n    var currentIndex = (this || _global).keysIndex;\n\n    if ((this || _global).lock) {\n      this.setCurrentData((this || _global).currentData);\n      return;\n    }\n\n    (this || _global).lock = true;\n    (this || _global)._mdf = false;\n    var i;\n    var len = (this || _global).effectsSequence.length;\n    var finalValue = _finalValue || (this || _global).data.d.k[(this || _global).keysIndex].s;\n\n    for (i = 0; i < len; i += 1) {\n      // Checking if index changed to prevent creating a new object every time the expression updates.\n      if (currentIndex !== (this || _global).keysIndex) {\n        finalValue = (this || _global).effectsSequence[i](finalValue, finalValue.t);\n      } else {\n        finalValue = (this || _global).effectsSequence[i]((this || _global).currentData, finalValue.t);\n      }\n    }\n\n    if (currentValue !== finalValue) {\n      this.setCurrentData(finalValue);\n    }\n\n    (this || _global).v = (this || _global).currentData;\n    (this || _global).pv = (this || _global).v;\n    (this || _global).lock = false;\n    (this || _global).frameId = (this || _global).elem.globalData.frameId;\n  };\n\n  TextProperty.prototype.getKeyframeValue = function () {\n    var textKeys = (this || _global).data.d.k;\n    var frameNum = (this || _global).elem.comp.renderedFrame;\n    var i = 0;\n    var len = textKeys.length;\n\n    while (i <= len - 1) {\n      if (i === len - 1 || textKeys[i + 1].t > frameNum) {\n        break;\n      }\n\n      i += 1;\n    }\n\n    if ((this || _global).keysIndex !== i) {\n      (this || _global).keysIndex = i;\n    }\n\n    return (this || _global).data.d.k[(this || _global).keysIndex].s;\n  };\n\n  TextProperty.prototype.buildFinalText = function (text) {\n    var combinedCharacters = FontManager.getCombinedCharacterCodes();\n    var charactersArray = [];\n    var i = 0;\n    var len = text.length;\n    var charCode;\n\n    while (i < len) {\n      charCode = text.charCodeAt(i);\n\n      if (combinedCharacters.indexOf(charCode) !== -1) {\n        charactersArray[charactersArray.length - 1] += text.charAt(i);\n      } else if (charCode >= 55296 && charCode <= 56319) {\n        charCode = text.charCodeAt(i + 1);\n\n        if (charCode >= 56320 && charCode <= 57343) {\n          charactersArray.push(text.substr(i, 2));\n          i += 1;\n        } else {\n          charactersArray.push(text.charAt(i));\n        }\n      } else {\n        charactersArray.push(text.charAt(i));\n      }\n\n      i += 1;\n    }\n\n    return charactersArray;\n  };\n\n  TextProperty.prototype.completeTextData = function (documentData) {\n    documentData.__complete = true;\n    var fontManager = (this || _global).elem.globalData.fontManager;\n    var data = (this || _global).data;\n    var letters = [];\n    var i;\n    var len;\n    var newLineFlag;\n    var index = 0;\n    var val;\n    var anchorGrouping = data.m.g;\n    var currentSize = 0;\n    var currentPos = 0;\n    var currentLine = 0;\n    var lineWidths = [];\n    var lineWidth = 0;\n    var maxLineWidth = 0;\n    var j;\n    var jLen;\n    var fontData = fontManager.getFontByName(documentData.f);\n    var charData;\n    var cLength = 0;\n    var fontProps = getFontProperties(fontData);\n    documentData.fWeight = fontProps.weight;\n    documentData.fStyle = fontProps.style;\n    documentData.finalSize = documentData.s;\n    documentData.finalText = this.buildFinalText(documentData.t);\n    len = documentData.finalText.length;\n    documentData.finalLineHeight = documentData.lh;\n    var trackingOffset = documentData.tr / 1000 * documentData.finalSize;\n    var charCode;\n\n    if (documentData.sz) {\n      var flag = true;\n      var boxWidth = documentData.sz[0];\n      var boxHeight = documentData.sz[1];\n      var currentHeight;\n      var finalText;\n\n      while (flag) {\n        finalText = this.buildFinalText(documentData.t);\n        currentHeight = 0;\n        lineWidth = 0;\n        len = finalText.length;\n        trackingOffset = documentData.tr / 1000 * documentData.finalSize;\n        var lastSpaceIndex = -1;\n\n        for (i = 0; i < len; i += 1) {\n          charCode = finalText[i].charCodeAt(0);\n          newLineFlag = false;\n\n          if (finalText[i] === \" \") {\n            lastSpaceIndex = i;\n          } else if (charCode === 13 || charCode === 3) {\n            lineWidth = 0;\n            newLineFlag = true;\n            currentHeight += documentData.finalLineHeight || documentData.finalSize * 1.2;\n          }\n\n          if (fontManager.chars) {\n            charData = fontManager.getCharData(finalText[i], fontData.fStyle, fontData.fFamily);\n            cLength = newLineFlag ? 0 : charData.w * documentData.finalSize / 100;\n          } else {\n            // tCanvasHelper.font = documentData.s + 'px '+ fontData.fFamily;\n            cLength = fontManager.measureText(finalText[i], documentData.f, documentData.finalSize);\n          }\n\n          if (lineWidth + cLength > boxWidth && finalText[i] !== \" \") {\n            if (lastSpaceIndex === -1) {\n              len += 1;\n            } else {\n              i = lastSpaceIndex;\n            }\n\n            currentHeight += documentData.finalLineHeight || documentData.finalSize * 1.2;\n            finalText.splice(i, lastSpaceIndex === i ? 1 : 0, \"\\r\"); // finalText = finalText.substr(0,i) + \"\\r\" + finalText.substr(i === lastSpaceIndex ? i + 1 : i);\n\n            lastSpaceIndex = -1;\n            lineWidth = 0;\n          } else {\n            lineWidth += cLength;\n            lineWidth += trackingOffset;\n          }\n        }\n\n        currentHeight += fontData.ascent * documentData.finalSize / 100;\n\n        if ((this || _global).canResize && documentData.finalSize > (this || _global).minimumFontSize && boxHeight < currentHeight) {\n          documentData.finalSize -= 1;\n          documentData.finalLineHeight = documentData.finalSize * documentData.lh / documentData.s;\n        } else {\n          documentData.finalText = finalText;\n          len = documentData.finalText.length;\n          flag = false;\n        }\n      }\n    }\n\n    lineWidth = -trackingOffset;\n    cLength = 0;\n    var uncollapsedSpaces = 0;\n    var currentChar;\n\n    for (i = 0; i < len; i += 1) {\n      newLineFlag = false;\n      currentChar = documentData.finalText[i];\n      charCode = currentChar.charCodeAt(0);\n\n      if (charCode === 13 || charCode === 3) {\n        uncollapsedSpaces = 0;\n        lineWidths.push(lineWidth);\n        maxLineWidth = lineWidth > maxLineWidth ? lineWidth : maxLineWidth;\n        lineWidth = -2 * trackingOffset;\n        val = \"\";\n        newLineFlag = true;\n        currentLine += 1;\n      } else {\n        val = currentChar;\n      }\n\n      if (fontManager.chars) {\n        charData = fontManager.getCharData(currentChar, fontData.fStyle, fontManager.getFontByName(documentData.f).fFamily);\n        cLength = newLineFlag ? 0 : charData.w * documentData.finalSize / 100;\n      } else {\n        // var charWidth = fontManager.measureText(val, documentData.f, documentData.finalSize);\n        // tCanvasHelper.font = documentData.finalSize + 'px '+ fontManager.getFontByName(documentData.f).fFamily;\n        cLength = fontManager.measureText(val, documentData.f, documentData.finalSize);\n      } //\n\n\n      if (currentChar === \" \") {\n        uncollapsedSpaces += cLength + trackingOffset;\n      } else {\n        lineWidth += cLength + trackingOffset + uncollapsedSpaces;\n        uncollapsedSpaces = 0;\n      }\n\n      letters.push({\n        l: cLength,\n        an: cLength,\n        add: currentSize,\n        n: newLineFlag,\n        anIndexes: [],\n        val: val,\n        line: currentLine,\n        animatorJustifyOffset: 0\n      });\n\n      if (anchorGrouping == 2) {\n        // eslint-disable-line eqeqeq\n        currentSize += cLength;\n\n        if (val === \"\" || val === \" \" || i === len - 1) {\n          if (val === \"\" || val === \" \") {\n            currentSize -= cLength;\n          }\n\n          while (currentPos <= i) {\n            letters[currentPos].an = currentSize;\n            letters[currentPos].ind = index;\n            letters[currentPos].extra = cLength;\n            currentPos += 1;\n          }\n\n          index += 1;\n          currentSize = 0;\n        }\n      } else if (anchorGrouping == 3) {\n        // eslint-disable-line eqeqeq\n        currentSize += cLength;\n\n        if (val === \"\" || i === len - 1) {\n          if (val === \"\") {\n            currentSize -= cLength;\n          }\n\n          while (currentPos <= i) {\n            letters[currentPos].an = currentSize;\n            letters[currentPos].ind = index;\n            letters[currentPos].extra = cLength;\n            currentPos += 1;\n          }\n\n          currentSize = 0;\n          index += 1;\n        }\n      } else {\n        letters[index].ind = index;\n        letters[index].extra = 0;\n        index += 1;\n      }\n    }\n\n    documentData.l = letters;\n    maxLineWidth = lineWidth > maxLineWidth ? lineWidth : maxLineWidth;\n    lineWidths.push(lineWidth);\n\n    if (documentData.sz) {\n      documentData.boxWidth = documentData.sz[0];\n      documentData.justifyOffset = 0;\n    } else {\n      documentData.boxWidth = maxLineWidth;\n\n      switch (documentData.j) {\n        case 1:\n          documentData.justifyOffset = -documentData.boxWidth;\n          break;\n\n        case 2:\n          documentData.justifyOffset = -documentData.boxWidth / 2;\n          break;\n\n        default:\n          documentData.justifyOffset = 0;\n      }\n    }\n\n    documentData.lineWidths = lineWidths;\n    var animators = data.a;\n    var animatorData;\n    var letterData;\n    jLen = animators.length;\n    var based;\n    var ind;\n    var indexes = [];\n\n    for (j = 0; j < jLen; j += 1) {\n      animatorData = animators[j];\n\n      if (animatorData.a.sc) {\n        documentData.strokeColorAnim = true;\n      }\n\n      if (animatorData.a.sw) {\n        documentData.strokeWidthAnim = true;\n      }\n\n      if (animatorData.a.fc || animatorData.a.fh || animatorData.a.fs || animatorData.a.fb) {\n        documentData.fillColorAnim = true;\n      }\n\n      ind = 0;\n      based = animatorData.s.b;\n\n      for (i = 0; i < len; i += 1) {\n        letterData = letters[i];\n        letterData.anIndexes[j] = ind;\n\n        if (based == 1 && letterData.val !== \"\" || based == 2 && letterData.val !== \"\" && letterData.val !== \" \" || based == 3 && (letterData.n || letterData.val == \" \" || i == len - 1) || based == 4 && (letterData.n || i == len - 1)) {\n          // eslint-disable-line eqeqeq\n          if (animatorData.s.rn === 1) {\n            indexes.push(ind);\n          }\n\n          ind += 1;\n        }\n      }\n\n      data.a[j].s.totalChars = ind;\n      var currentInd = -1;\n      var newInd;\n\n      if (animatorData.s.rn === 1) {\n        for (i = 0; i < len; i += 1) {\n          letterData = letters[i];\n\n          if (currentInd != letterData.anIndexes[j]) {\n            // eslint-disable-line eqeqeq\n            currentInd = letterData.anIndexes[j];\n            newInd = indexes.splice(Math.floor(Math.random() * indexes.length), 1)[0];\n          }\n\n          letterData.anIndexes[j] = newInd;\n        }\n      }\n    }\n\n    documentData.yOffset = documentData.finalLineHeight || documentData.finalSize * 1.2;\n    documentData.ls = documentData.ls || 0;\n    documentData.ascent = fontData.ascent * documentData.finalSize / 100;\n  };\n\n  TextProperty.prototype.updateDocumentData = function (newData, index) {\n    index = index === undefined ? (this || _global).keysIndex : index;\n    var dData = this.copyData({}, (this || _global).data.d.k[index].s);\n    dData = this.copyData(dData, newData);\n    (this || _global).data.d.k[index].s = dData;\n    this.recalculate(index);\n\n    (this || _global).elem.addDynamicProperty(this || _global);\n  };\n\n  TextProperty.prototype.recalculate = function (index) {\n    var dData = (this || _global).data.d.k[index].s;\n    dData.__complete = false;\n    (this || _global).keysIndex = 0;\n    (this || _global)._isFirstFrame = true;\n    this.getValue(dData);\n  };\n\n  TextProperty.prototype.canResizeFont = function (_canResize) {\n    (this || _global).canResize = _canResize;\n    this.recalculate((this || _global).keysIndex);\n\n    (this || _global).elem.addDynamicProperty(this || _global);\n  };\n\n  TextProperty.prototype.setMinimumFontSize = function (_fontValue) {\n    (this || _global).minimumFontSize = Math.floor(_fontValue) || 1;\n    this.recalculate((this || _global).keysIndex);\n\n    (this || _global).elem.addDynamicProperty(this || _global);\n  };\n  /* global extendPrototype, BezierFactory, PropertyFactory, DynamicPropertyContainer */\n\n  /* exported TextSelectorProp */\n\n\n  var TextSelectorProp = function () {\n    var max = Math.max;\n    var min = Math.min;\n    var floor = Math.floor;\n\n    function TextSelectorPropFactory(elem, data) {\n      (this || _global)._currentTextLength = -1;\n      (this || _global).k = false;\n      (this || _global).data = data;\n      (this || _global).elem = elem;\n      (this || _global).comp = elem.comp;\n      (this || _global).finalS = 0;\n      (this || _global).finalE = 0;\n      this.initDynamicPropertyContainer(elem);\n      (this || _global).s = PropertyFactory.getProp(elem, data.s || {\n        k: 0\n      }, 0, 0, this || _global);\n\n      if (\"e\" in data) {\n        (this || _global).e = PropertyFactory.getProp(elem, data.e, 0, 0, this || _global);\n      } else {\n        (this || _global).e = {\n          v: 100\n        };\n      }\n\n      (this || _global).o = PropertyFactory.getProp(elem, data.o || {\n        k: 0\n      }, 0, 0, this || _global);\n      (this || _global).xe = PropertyFactory.getProp(elem, data.xe || {\n        k: 0\n      }, 0, 0, this || _global);\n      (this || _global).ne = PropertyFactory.getProp(elem, data.ne || {\n        k: 0\n      }, 0, 0, this || _global);\n      (this || _global).a = PropertyFactory.getProp(elem, data.a, 0, 0.01, this || _global);\n\n      if (!(this || _global).dynamicProperties.length) {\n        this.getValue();\n      }\n    }\n\n    TextSelectorPropFactory.prototype = {\n      getMult: function (ind) {\n        if ((this || _global)._currentTextLength !== (this || _global).elem.textProperty.currentData.l.length) {\n          this.getValue();\n        } // var easer = bez.getEasingCurve(this.ne.v/100,0,1-this.xe.v/100,1);\n\n\n        var x1 = 0;\n        var y1 = 0;\n        var x2 = 1;\n        var y2 = 1;\n\n        if ((this || _global).ne.v > 0) {\n          x1 = (this || _global).ne.v / 100;\n        } else {\n          y1 = -(this || _global).ne.v / 100;\n        }\n\n        if ((this || _global).xe.v > 0) {\n          x2 = 1 - (this || _global).xe.v / 100;\n        } else {\n          y2 = 1 + (this || _global).xe.v / 100;\n        }\n\n        var easer = BezierFactory.getBezierEasing(x1, y1, x2, y2).get;\n        var mult = 0;\n        var s = (this || _global).finalS;\n        var e = (this || _global).finalE;\n        var type = (this || _global).data.sh;\n\n        if (type === 2) {\n          if (e === s) {\n            mult = ind >= e ? 1 : 0;\n          } else {\n            mult = max(0, min(0.5 / (e - s) + (ind - s) / (e - s), 1));\n          }\n\n          mult = easer(mult);\n        } else if (type === 3) {\n          if (e === s) {\n            mult = ind >= e ? 0 : 1;\n          } else {\n            mult = 1 - max(0, min(0.5 / (e - s) + (ind - s) / (e - s), 1));\n          }\n\n          mult = easer(mult);\n        } else if (type === 4) {\n          if (e === s) {\n            mult = 0;\n          } else {\n            mult = max(0, min(0.5 / (e - s) + (ind - s) / (e - s), 1));\n\n            if (mult < 0.5) {\n              mult *= 2;\n            } else {\n              mult = 1 - 2 * (mult - 0.5);\n            }\n          }\n\n          mult = easer(mult);\n        } else if (type === 5) {\n          if (e === s) {\n            mult = 0;\n          } else {\n            var tot = e - s;\n            /* ind += 0.5;\r\n                      mult = -4/(tot*tot)*(ind*ind)+(4/tot)*ind; */\n\n            ind = min(max(0, ind + 0.5 - s), e - s);\n            var x = -tot / 2 + ind;\n            var a = tot / 2;\n            mult = Math.sqrt(1 - x * x / (a * a));\n          }\n\n          mult = easer(mult);\n        } else if (type === 6) {\n          if (e === s) {\n            mult = 0;\n          } else {\n            ind = min(max(0, ind + 0.5 - s), e - s);\n            mult = (1 + Math.cos(Math.PI + Math.PI * 2 * ind / (e - s))) / 2; // eslint-disable-line\n          }\n\n          mult = easer(mult);\n        } else {\n          if (ind >= floor(s)) {\n            if (ind - s < 0) {\n              mult = max(0, min(min(e, 1) - (s - ind), 1));\n            } else {\n              mult = max(0, min(e - ind, 1));\n            }\n          }\n\n          mult = easer(mult);\n        }\n\n        return mult * (this || _global).a.v;\n      },\n      getValue: function (newCharsFlag) {\n        this.iterateDynamicProperties();\n        (this || _global)._mdf = newCharsFlag || (this || _global)._mdf;\n        (this || _global)._currentTextLength = (this || _global).elem.textProperty.currentData.l.length || 0;\n\n        if (newCharsFlag && (this || _global).data.r === 2) {\n          (this || _global).e.v = (this || _global)._currentTextLength;\n        }\n\n        var divisor = (this || _global).data.r === 2 ? 1 : 100 / (this || _global).data.totalChars;\n        var o = (this || _global).o.v / divisor;\n        var s = (this || _global).s.v / divisor + o;\n        var e = (this || _global).e.v / divisor + o;\n\n        if (s > e) {\n          var _s = s;\n          s = e;\n          e = _s;\n        }\n\n        (this || _global).finalS = s;\n        (this || _global).finalE = e;\n      }\n    };\n    extendPrototype([DynamicPropertyContainer], TextSelectorPropFactory);\n\n    function getTextSelectorProp(elem, data, arr) {\n      return new TextSelectorPropFactory(elem, data, arr);\n    }\n\n    return {\n      getTextSelectorProp: getTextSelectorProp\n    };\n  }();\n  /* global createSizedArray, pooling */\n\n  /* exported poolFactory */\n\n\n  var poolFactory = function () {\n    return function (initialLength, _create, _release) {\n      var _length = 0;\n      var _maxLength = initialLength;\n      var pool = createSizedArray(_maxLength);\n      var ob = {\n        newElement: newElement,\n        release: release\n      };\n\n      function newElement() {\n        var element;\n\n        if (_length) {\n          _length -= 1;\n          element = pool[_length];\n        } else {\n          element = _create();\n        }\n\n        return element;\n      }\n\n      function release(element) {\n        if (_length === _maxLength) {\n          pool = pooling.double(pool);\n          _maxLength *= 2;\n        }\n\n        if (_release) {\n          _release(element);\n        }\n\n        pool[_length] = element;\n        _length += 1;\n      }\n\n      return ob;\n    };\n  }();\n  /* global createSizedArray */\n\n  /* exported pooling */\n\n\n  var pooling = function () {\n    function double(arr) {\n      return arr.concat(createSizedArray(arr.length));\n    }\n\n    return {\n      double: double\n    };\n  }();\n  /* global createTypedArray, poolFactory */\n\n  /* exported pointPool */\n\n\n  var pointPool = function () {\n    function create() {\n      return createTypedArray(\"float32\", 2);\n    }\n\n    return poolFactory(8, create);\n  }();\n  /* global ShapePath, pointPool, poolFactory */\n\n  /* exported shapePool */\n\n\n  var shapePool = function () {\n    function create() {\n      return new ShapePath();\n    }\n\n    function release(shapePath) {\n      var len = shapePath._length;\n      var i;\n\n      for (i = 0; i < len; i += 1) {\n        pointPool.release(shapePath.v[i]);\n        pointPool.release(shapePath.i[i]);\n        pointPool.release(shapePath.o[i]);\n        shapePath.v[i] = null;\n        shapePath.i[i] = null;\n        shapePath.o[i] = null;\n      }\n\n      shapePath._length = 0;\n      shapePath.c = false;\n    }\n\n    function clone(shape) {\n      var cloned = factory.newElement();\n      var i;\n      var len = shape._length === undefined ? shape.v.length : shape._length;\n      cloned.setLength(len);\n      cloned.c = shape.c;\n\n      for (i = 0; i < len; i += 1) {\n        cloned.setTripleAt(shape.v[i][0], shape.v[i][1], shape.o[i][0], shape.o[i][1], shape.i[i][0], shape.i[i][1], i);\n      }\n\n      return cloned;\n    }\n\n    var factory = poolFactory(4, create, release);\n    factory.clone = clone;\n    return factory;\n  }();\n  /* global createSizedArray, ShapeCollection, shapePool, pooling */\n\n  /* exported shapeCollectionPool */\n\n\n  var shapeCollectionPool = function () {\n    var ob = {\n      newShapeCollection: newShapeCollection,\n      release: release\n    };\n    var _length = 0;\n    var _maxLength = 4;\n    var pool = createSizedArray(_maxLength);\n\n    function newShapeCollection() {\n      var shapeCollection;\n\n      if (_length) {\n        _length -= 1;\n        shapeCollection = pool[_length];\n      } else {\n        shapeCollection = new ShapeCollection();\n      }\n\n      return shapeCollection;\n    }\n\n    function release(shapeCollection) {\n      var i;\n      var len = shapeCollection._length;\n\n      for (i = 0; i < len; i += 1) {\n        shapePool.release(shapeCollection.shapes[i]);\n      }\n\n      shapeCollection._length = 0;\n\n      if (_length === _maxLength) {\n        pool = pooling.double(pool);\n        _maxLength *= 2;\n      }\n\n      pool[_length] = shapeCollection;\n      _length += 1;\n    }\n\n    return ob;\n  }();\n  /* global poolFactory, bezierLengthPool */\n\n  /* exported segmentsLengthPool */\n\n\n  var segmentsLengthPool = function () {\n    function create() {\n      return {\n        lengths: [],\n        totalLength: 0\n      };\n    }\n\n    function release(element) {\n      var i;\n      var len = element.lengths.length;\n\n      for (i = 0; i < len; i += 1) {\n        bezierLengthPool.release(element.lengths[i]);\n      }\n\n      element.lengths.length = 0;\n    }\n\n    return poolFactory(8, create, release);\n  }();\n  /* global createTypedArray, defaultCurveSegments, poolFactory */\n\n  /* exported bezierLengthPool */\n\n\n  var bezierLengthPool = function () {\n    function create() {\n      return {\n        addedLength: 0,\n        percents: createTypedArray(\"float32\", defaultCurveSegments),\n        lengths: createTypedArray(\"float32\", defaultCurveSegments)\n      };\n    }\n\n    return poolFactory(8, create);\n  }();\n  /* exported markerParser */\n\n\n  var markerParser = function () {\n    function parsePayloadLines(payload) {\n      var lines = payload.split(\"\\r\\n\");\n      var keys = {};\n      var line;\n      var keysCount = 0;\n\n      for (var i = 0; i < lines.length; i += 1) {\n        line = lines[i].split(\":\");\n\n        if (line.length === 2) {\n          keys[line[0]] = line[1].trim();\n          keysCount += 1;\n        }\n      }\n\n      if (keysCount === 0) {\n        throw new Error();\n      }\n\n      return keys;\n    }\n\n    return function (_markers) {\n      var markers = [];\n\n      for (var i = 0; i < _markers.length; i += 1) {\n        var _marker = _markers[i];\n        var markerData = {\n          time: _marker.tm,\n          duration: _marker.dr\n        };\n\n        try {\n          markerData.payload = JSON.parse(_markers[i].cm);\n        } catch (_) {\n          try {\n            markerData.payload = parsePayloadLines(_markers[i].cm);\n          } catch (__) {\n            markerData.payload = {\n              name: _markers[i]\n            };\n          }\n        }\n\n        markers.push(markerData);\n      }\n\n      return markers;\n    };\n  }();\n  /* global AudioElement, FootageElement, FontManager */\n\n\n  function BaseRenderer() {}\n\n  BaseRenderer.prototype.checkLayers = function (num) {\n    var i;\n    var len = (this || _global).layers.length;\n    var data;\n    (this || _global).completeLayers = true;\n\n    for (i = len - 1; i >= 0; i -= 1) {\n      if (!(this || _global).elements[i]) {\n        data = (this || _global).layers[i];\n\n        if (data.ip - data.st <= num - (this || _global).layers[i].st && data.op - data.st > num - (this || _global).layers[i].st) {\n          this.buildItem(i);\n        }\n      }\n\n      (this || _global).completeLayers = (this || _global).elements[i] ? (this || _global).completeLayers : false;\n    }\n\n    this.checkPendingElements();\n  };\n\n  BaseRenderer.prototype.createItem = function (layer) {\n    switch (layer.ty) {\n      case 2:\n        return this.createImage(layer);\n\n      case 0:\n        return this.createComp(layer);\n\n      case 1:\n        return this.createSolid(layer);\n\n      case 3:\n        return this.createNull(layer);\n\n      case 4:\n        return this.createShape(layer);\n\n      case 5:\n        return this.createText(layer);\n\n      case 6:\n        return this.createAudio(layer);\n\n      case 13:\n        return this.createCamera(layer);\n\n      case 15:\n        return this.createFootage(layer);\n\n      default:\n        return this.createNull(layer);\n    }\n  };\n\n  BaseRenderer.prototype.createCamera = function () {\n    throw new Error(\"You're using a 3d camera. Try the html renderer.\");\n  };\n\n  BaseRenderer.prototype.createAudio = function (data) {\n    return new AudioElement(data, (this || _global).globalData, this || _global);\n  };\n\n  BaseRenderer.prototype.createFootage = function (data) {\n    return new FootageElement(data, (this || _global).globalData, this || _global);\n  };\n\n  BaseRenderer.prototype.buildAllItems = function () {\n    var i;\n    var len = (this || _global).layers.length;\n\n    for (i = 0; i < len; i += 1) {\n      this.buildItem(i);\n    }\n\n    this.checkPendingElements();\n  };\n\n  BaseRenderer.prototype.includeLayers = function (newLayers) {\n    (this || _global).completeLayers = false;\n    var i;\n    var len = newLayers.length;\n    var j;\n    var jLen = (this || _global).layers.length;\n\n    for (i = 0; i < len; i += 1) {\n      j = 0;\n\n      while (j < jLen) {\n        if ((this || _global).layers[j].id === newLayers[i].id) {\n          (this || _global).layers[j] = newLayers[i];\n          break;\n        }\n\n        j += 1;\n      }\n    }\n  };\n\n  BaseRenderer.prototype.setProjectInterface = function (pInterface) {\n    (this || _global).globalData.projectInterface = pInterface;\n  };\n\n  BaseRenderer.prototype.initItems = function () {\n    if (!(this || _global).globalData.progressiveLoad) {\n      this.buildAllItems();\n    }\n  };\n\n  BaseRenderer.prototype.buildElementParenting = function (element, parentName, hierarchy) {\n    var elements = (this || _global).elements;\n    var layers = (this || _global).layers;\n    var i = 0;\n    var len = layers.length;\n\n    while (i < len) {\n      if (layers[i].ind == parentName) {\n        // eslint-disable-line eqeqeq\n        if (!elements[i] || elements[i] === true) {\n          this.buildItem(i);\n          this.addPendingElement(element);\n        } else {\n          hierarchy.push(elements[i]);\n          elements[i].setAsParent();\n\n          if (layers[i].parent !== undefined) {\n            this.buildElementParenting(element, layers[i].parent, hierarchy);\n          } else {\n            element.setHierarchy(hierarchy);\n          }\n        }\n      }\n\n      i += 1;\n    }\n  };\n\n  BaseRenderer.prototype.addPendingElement = function (element) {\n    (this || _global).pendingElements.push(element);\n  };\n\n  BaseRenderer.prototype.searchExtraCompositions = function (assets) {\n    var i;\n    var len = assets.length;\n\n    for (i = 0; i < len; i += 1) {\n      if (assets[i].xt) {\n        var comp = this.createComp(assets[i]);\n        comp.initExpressions();\n\n        (this || _global).globalData.projectInterface.registerComposition(comp);\n      }\n    }\n  };\n\n  BaseRenderer.prototype.setupGlobalData = function (animData, fontsContainer) {\n    (this || _global).globalData.fontManager = new FontManager();\n\n    (this || _global).globalData.fontManager.addChars(animData.chars);\n\n    (this || _global).globalData.fontManager.addFonts(animData.fonts, fontsContainer);\n\n    (this || _global).globalData.getAssetData = (this || _global).animationItem.getAssetData.bind((this || _global).animationItem);\n    (this || _global).globalData.getAssetsPath = (this || _global).animationItem.getAssetsPath.bind((this || _global).animationItem);\n    (this || _global).globalData.imageLoader = (this || _global).animationItem.imagePreloader;\n    (this || _global).globalData.audioController = (this || _global).animationItem.audioController;\n    (this || _global).globalData.frameId = 0;\n    (this || _global).globalData.frameRate = animData.fr;\n    (this || _global).globalData.nm = animData.nm;\n    (this || _global).globalData.compSize = {\n      w: animData.w,\n      h: animData.h\n    };\n  };\n  /* global createElementID, extendPrototype, BaseRenderer, NullElement, SVGShapeElement, SVGTextLottieElement,\r\n  IImageElement, SVGCompElement, ISolidElement, createNS, locationHref, createSizedArray, expressionsPlugin */\n\n\n  function SVGRenderer(animationItem, config) {\n    (this || _global).animationItem = animationItem;\n    (this || _global).layers = null;\n    (this || _global).renderedFrame = -1;\n    (this || _global).svgElement = createNS(\"svg\");\n    var ariaLabel = \"\";\n\n    if (config && config.title) {\n      var titleElement = createNS(\"title\");\n      var titleId = createElementID();\n      titleElement.setAttribute(\"id\", titleId);\n      titleElement.textContent = config.title;\n\n      (this || _global).svgElement.appendChild(titleElement);\n\n      ariaLabel += titleId;\n    }\n\n    if (config && config.description) {\n      var descElement = createNS(\"desc\");\n      var descId = createElementID();\n      descElement.setAttribute(\"id\", descId);\n      descElement.textContent = config.description;\n\n      (this || _global).svgElement.appendChild(descElement);\n\n      ariaLabel += \" \" + descId;\n    }\n\n    if (ariaLabel) {\n      (this || _global).svgElement.setAttribute(\"aria-labelledby\", ariaLabel);\n    }\n\n    var defs = createNS(\"defs\");\n\n    (this || _global).svgElement.appendChild(defs);\n\n    var maskElement = createNS(\"g\");\n\n    (this || _global).svgElement.appendChild(maskElement);\n\n    (this || _global).layerElement = maskElement;\n    (this || _global).renderConfig = {\n      preserveAspectRatio: config && config.preserveAspectRatio || \"xMidYMid meet\",\n      imagePreserveAspectRatio: config && config.imagePreserveAspectRatio || \"xMidYMid slice\",\n      progressiveLoad: config && config.progressiveLoad || false,\n      hideOnTransparent: !(config && config.hideOnTransparent === false),\n      viewBoxOnly: config && config.viewBoxOnly || false,\n      viewBoxSize: config && config.viewBoxSize || false,\n      className: config && config.className || \"\",\n      id: config && config.id || \"\",\n      focusable: config && config.focusable,\n      filterSize: {\n        width: config && config.filterSize && config.filterSize.width || \"100%\",\n        height: config && config.filterSize && config.filterSize.height || \"100%\",\n        x: config && config.filterSize && config.filterSize.x || \"0%\",\n        y: config && config.filterSize && config.filterSize.y || \"0%\"\n      }\n    };\n    (this || _global).globalData = {\n      _mdf: false,\n      frameNum: -1,\n      defs: defs,\n      renderConfig: (this || _global).renderConfig\n    };\n    (this || _global).elements = [];\n    (this || _global).pendingElements = [];\n    (this || _global).destroyed = false;\n    (this || _global).rendererType = \"svg\";\n  }\n\n  extendPrototype([BaseRenderer], SVGRenderer);\n\n  SVGRenderer.prototype.createNull = function (data) {\n    return new NullElement(data, (this || _global).globalData, this || _global);\n  };\n\n  SVGRenderer.prototype.createShape = function (data) {\n    return new SVGShapeElement(data, (this || _global).globalData, this || _global);\n  };\n\n  SVGRenderer.prototype.createText = function (data) {\n    return new SVGTextLottieElement(data, (this || _global).globalData, this || _global);\n  };\n\n  SVGRenderer.prototype.createImage = function (data) {\n    return new IImageElement(data, (this || _global).globalData, this || _global);\n  };\n\n  SVGRenderer.prototype.createComp = function (data) {\n    return new SVGCompElement(data, (this || _global).globalData, this || _global);\n  };\n\n  SVGRenderer.prototype.createSolid = function (data) {\n    return new ISolidElement(data, (this || _global).globalData, this || _global);\n  };\n\n  SVGRenderer.prototype.configAnimation = function (animData) {\n    (this || _global).svgElement.setAttribute(\"xmlns\", \"http://www.w3.org/2000/svg\");\n\n    if ((this || _global).renderConfig.viewBoxSize) {\n      (this || _global).svgElement.setAttribute(\"viewBox\", (this || _global).renderConfig.viewBoxSize);\n    } else {\n      (this || _global).svgElement.setAttribute(\"viewBox\", \"0 0 \" + animData.w + \" \" + animData.h);\n    }\n\n    if (!(this || _global).renderConfig.viewBoxOnly) {\n      (this || _global).svgElement.setAttribute(\"width\", animData.w);\n\n      (this || _global).svgElement.setAttribute(\"height\", animData.h);\n\n      (this || _global).svgElement.style.width = \"100%\";\n      (this || _global).svgElement.style.height = \"100%\";\n      (this || _global).svgElement.style.transform = \"translate3d(0,0,0)\";\n    }\n\n    if ((this || _global).renderConfig.className) {\n      (this || _global).svgElement.setAttribute(\"class\", (this || _global).renderConfig.className);\n    }\n\n    if ((this || _global).renderConfig.id) {\n      (this || _global).svgElement.setAttribute(\"id\", (this || _global).renderConfig.id);\n    }\n\n    if ((this || _global).renderConfig.focusable !== undefined) {\n      (this || _global).svgElement.setAttribute(\"focusable\", (this || _global).renderConfig.focusable);\n    }\n\n    (this || _global).svgElement.setAttribute(\"preserveAspectRatio\", (this || _global).renderConfig.preserveAspectRatio); // this.layerElement.style.transform = 'translate3d(0,0,0)';\n    // this.layerElement.style.transformOrigin = this.layerElement.style.mozTransformOrigin = this.layerElement.style.webkitTransformOrigin = this.layerElement.style['-webkit-transform'] = \"0px 0px 0px\";\n\n\n    (this || _global).animationItem.wrapper.appendChild((this || _global).svgElement); // Mask animation\n\n\n    var defs = (this || _global).globalData.defs;\n    this.setupGlobalData(animData, defs);\n    (this || _global).globalData.progressiveLoad = (this || _global).renderConfig.progressiveLoad;\n    (this || _global).data = animData;\n    var maskElement = createNS(\"clipPath\");\n    var rect = createNS(\"rect\");\n    rect.setAttribute(\"width\", animData.w);\n    rect.setAttribute(\"height\", animData.h);\n    rect.setAttribute(\"x\", 0);\n    rect.setAttribute(\"y\", 0);\n    var maskId = createElementID();\n    maskElement.setAttribute(\"id\", maskId);\n    maskElement.appendChild(rect);\n\n    (this || _global).layerElement.setAttribute(\"clip-path\", \"url(\" + locationHref + \"#\" + maskId + \")\");\n\n    defs.appendChild(maskElement);\n    (this || _global).layers = animData.layers;\n    (this || _global).elements = createSizedArray(animData.layers.length);\n  };\n\n  SVGRenderer.prototype.destroy = function () {\n    if ((this || _global).animationItem.wrapper) {\n      (this || _global).animationItem.wrapper.innerText = \"\";\n    }\n\n    (this || _global).layerElement = null;\n    (this || _global).globalData.defs = null;\n    var i;\n    var len = (this || _global).layers ? (this || _global).layers.length : 0;\n\n    for (i = 0; i < len; i += 1) {\n      if ((this || _global).elements[i]) {\n        (this || _global).elements[i].destroy();\n      }\n    }\n\n    (this || _global).elements.length = 0;\n    (this || _global).destroyed = true;\n    (this || _global).animationItem = null;\n  };\n\n  SVGRenderer.prototype.updateContainerSize = function () {};\n\n  SVGRenderer.prototype.buildItem = function (pos) {\n    var elements = (this || _global).elements;\n\n    if (elements[pos] || (this || _global).layers[pos].ty === 99) {\n      return;\n    }\n\n    elements[pos] = true;\n    var element = this.createItem((this || _global).layers[pos]);\n    elements[pos] = element;\n\n    if (expressionsPlugin) {\n      if ((this || _global).layers[pos].ty === 0) {\n        (this || _global).globalData.projectInterface.registerComposition(element);\n      }\n\n      element.initExpressions();\n    }\n\n    this.appendElementInPos(element, pos);\n\n    if ((this || _global).layers[pos].tt) {\n      if (!(this || _global).elements[pos - 1] || (this || _global).elements[pos - 1] === true) {\n        this.buildItem(pos - 1);\n        this.addPendingElement(element);\n      } else {\n        element.setMatte(elements[pos - 1].layerId);\n      }\n    }\n  };\n\n  SVGRenderer.prototype.checkPendingElements = function () {\n    while ((this || _global).pendingElements.length) {\n      var element = (this || _global).pendingElements.pop();\n\n      element.checkParenting();\n\n      if (element.data.tt) {\n        var i = 0;\n        var len = (this || _global).elements.length;\n\n        while (i < len) {\n          if ((this || _global).elements[i] === element) {\n            element.setMatte((this || _global).elements[i - 1].layerId);\n            break;\n          }\n\n          i += 1;\n        }\n      }\n    }\n  };\n\n  SVGRenderer.prototype.renderFrame = function (num) {\n    if ((this || _global).renderedFrame === num || (this || _global).destroyed) {\n      return;\n    }\n\n    if (num === null) {\n      num = (this || _global).renderedFrame;\n    } else {\n      (this || _global).renderedFrame = num;\n    } // console.log('-------');\n    // console.log('FRAME ',num);\n\n\n    (this || _global).globalData.frameNum = num;\n    (this || _global).globalData.frameId += 1;\n    (this || _global).globalData.projectInterface.currentFrame = num;\n    (this || _global).globalData._mdf = false;\n    var i;\n    var len = (this || _global).layers.length;\n\n    if (!(this || _global).completeLayers) {\n      this.checkLayers(num);\n    }\n\n    for (i = len - 1; i >= 0; i -= 1) {\n      if ((this || _global).completeLayers || (this || _global).elements[i]) {\n        (this || _global).elements[i].prepareFrame(num - (this || _global).layers[i].st);\n      }\n    }\n\n    if ((this || _global).globalData._mdf) {\n      for (i = 0; i < len; i += 1) {\n        if ((this || _global).completeLayers || (this || _global).elements[i]) {\n          (this || _global).elements[i].renderFrame();\n        }\n      }\n    }\n  };\n\n  SVGRenderer.prototype.appendElementInPos = function (element, pos) {\n    var newElement = element.getBaseElement();\n\n    if (!newElement) {\n      return;\n    }\n\n    var i = 0;\n    var nextElement;\n\n    while (i < pos) {\n      if ((this || _global).elements[i] && (this || _global).elements[i] !== true && (this || _global).elements[i].getBaseElement()) {\n        nextElement = (this || _global).elements[i].getBaseElement();\n      }\n\n      i += 1;\n    }\n\n    if (nextElement) {\n      (this || _global).layerElement.insertBefore(newElement, nextElement);\n    } else {\n      (this || _global).layerElement.appendChild(newElement);\n    }\n  };\n\n  SVGRenderer.prototype.hide = function () {\n    (this || _global).layerElement.style.display = \"none\";\n  };\n\n  SVGRenderer.prototype.show = function () {\n    (this || _global).layerElement.style.display = \"block\";\n  };\n  /* global CVContextData, Matrix, extendPrototype, BaseRenderer, CVShapeElement, CVTextElement,\r\n  CVImageElement, CVCompElement, CVSolidElement, SVGRenderer, createTag, createSizedArray */\n\n\n  function CanvasRenderer(animationItem, config) {\n    (this || _global).animationItem = animationItem;\n    (this || _global).renderConfig = {\n      clearCanvas: config && config.clearCanvas !== undefined ? config.clearCanvas : true,\n      context: config && config.context || null,\n      progressiveLoad: config && config.progressiveLoad || false,\n      preserveAspectRatio: config && config.preserveAspectRatio || \"xMidYMid meet\",\n      imagePreserveAspectRatio: config && config.imagePreserveAspectRatio || \"xMidYMid slice\",\n      className: config && config.className || \"\",\n      id: config && config.id || \"\"\n    };\n    (this || _global).renderConfig.dpr = config && config.dpr || 1;\n\n    if ((this || _global).animationItem.wrapper) {\n      (this || _global).renderConfig.dpr = config && config.dpr || window.devicePixelRatio || 1;\n    }\n\n    (this || _global).renderedFrame = -1;\n    (this || _global).globalData = {\n      frameNum: -1,\n      _mdf: false,\n      renderConfig: (this || _global).renderConfig,\n      currentGlobalAlpha: -1\n    };\n    (this || _global).contextData = new CVContextData();\n    (this || _global).elements = [];\n    (this || _global).pendingElements = [];\n    (this || _global).transformMat = new Matrix();\n    (this || _global).completeLayers = false;\n    (this || _global).rendererType = \"canvas\";\n  }\n\n  extendPrototype([BaseRenderer], CanvasRenderer);\n\n  CanvasRenderer.prototype.createShape = function (data) {\n    return new CVShapeElement(data, (this || _global).globalData, this || _global);\n  };\n\n  CanvasRenderer.prototype.createText = function (data) {\n    return new CVTextElement(data, (this || _global).globalData, this || _global);\n  };\n\n  CanvasRenderer.prototype.createImage = function (data) {\n    return new CVImageElement(data, (this || _global).globalData, this || _global);\n  };\n\n  CanvasRenderer.prototype.createComp = function (data) {\n    return new CVCompElement(data, (this || _global).globalData, this || _global);\n  };\n\n  CanvasRenderer.prototype.createSolid = function (data) {\n    return new CVSolidElement(data, (this || _global).globalData, this || _global);\n  };\n\n  CanvasRenderer.prototype.createNull = SVGRenderer.prototype.createNull;\n\n  CanvasRenderer.prototype.ctxTransform = function (props) {\n    if (props[0] === 1 && props[1] === 0 && props[4] === 0 && props[5] === 1 && props[12] === 0 && props[13] === 0) {\n      return;\n    }\n\n    if (!(this || _global).renderConfig.clearCanvas) {\n      (this || _global).canvasContext.transform(props[0], props[1], props[4], props[5], props[12], props[13]);\n\n      return;\n    }\n\n    (this || _global).transformMat.cloneFromProps(props);\n\n    var cProps = (this || _global).contextData.cTr.props;\n\n    (this || _global).transformMat.transform(cProps[0], cProps[1], cProps[2], cProps[3], cProps[4], cProps[5], cProps[6], cProps[7], cProps[8], cProps[9], cProps[10], cProps[11], cProps[12], cProps[13], cProps[14], cProps[15]); // this.contextData.cTr.transform(props[0],props[1],props[2],props[3],props[4],props[5],props[6],props[7],props[8],props[9],props[10],props[11],props[12],props[13],props[14],props[15]);\n\n\n    (this || _global).contextData.cTr.cloneFromProps((this || _global).transformMat.props);\n\n    var trProps = (this || _global).contextData.cTr.props;\n\n    (this || _global).canvasContext.setTransform(trProps[0], trProps[1], trProps[4], trProps[5], trProps[12], trProps[13]);\n  };\n\n  CanvasRenderer.prototype.ctxOpacity = function (op) {\n    /* if(op === 1){\r\n          return;\r\n      } */\n    if (!(this || _global).renderConfig.clearCanvas) {\n      (this || _global).canvasContext.globalAlpha *= op < 0 ? 0 : op;\n      (this || _global).globalData.currentGlobalAlpha = (this || _global).contextData.cO;\n      return;\n    }\n\n    (this || _global).contextData.cO *= op < 0 ? 0 : op;\n\n    if ((this || _global).globalData.currentGlobalAlpha !== (this || _global).contextData.cO) {\n      (this || _global).canvasContext.globalAlpha = (this || _global).contextData.cO;\n      (this || _global).globalData.currentGlobalAlpha = (this || _global).contextData.cO;\n    }\n  };\n\n  CanvasRenderer.prototype.reset = function () {\n    if (!(this || _global).renderConfig.clearCanvas) {\n      (this || _global).canvasContext.restore();\n\n      return;\n    }\n\n    (this || _global).contextData.reset();\n  };\n\n  CanvasRenderer.prototype.save = function (actionFlag) {\n    if (!(this || _global).renderConfig.clearCanvas) {\n      (this || _global).canvasContext.save();\n\n      return;\n    }\n\n    if (actionFlag) {\n      (this || _global).canvasContext.save();\n    }\n\n    var props = (this || _global).contextData.cTr.props;\n\n    if ((this || _global).contextData._length <= (this || _global).contextData.cArrPos) {\n      (this || _global).contextData.duplicate();\n    }\n\n    var i;\n    var arr = (this || _global).contextData.saved[(this || _global).contextData.cArrPos];\n\n    for (i = 0; i < 16; i += 1) {\n      arr[i] = props[i];\n    }\n\n    (this || _global).contextData.savedOp[(this || _global).contextData.cArrPos] = (this || _global).contextData.cO;\n    (this || _global).contextData.cArrPos += 1;\n  };\n\n  CanvasRenderer.prototype.restore = function (actionFlag) {\n    if (!(this || _global).renderConfig.clearCanvas) {\n      (this || _global).canvasContext.restore();\n\n      return;\n    }\n\n    if (actionFlag) {\n      (this || _global).canvasContext.restore();\n\n      (this || _global).globalData.blendMode = \"source-over\";\n    }\n\n    (this || _global).contextData.cArrPos -= 1;\n    var popped = (this || _global).contextData.saved[(this || _global).contextData.cArrPos];\n    var i;\n    var arr = (this || _global).contextData.cTr.props;\n\n    for (i = 0; i < 16; i += 1) {\n      arr[i] = popped[i];\n    }\n\n    (this || _global).canvasContext.setTransform(popped[0], popped[1], popped[4], popped[5], popped[12], popped[13]);\n\n    popped = (this || _global).contextData.savedOp[(this || _global).contextData.cArrPos];\n    (this || _global).contextData.cO = popped;\n\n    if ((this || _global).globalData.currentGlobalAlpha !== popped) {\n      (this || _global).canvasContext.globalAlpha = popped;\n      (this || _global).globalData.currentGlobalAlpha = popped;\n    }\n  };\n\n  CanvasRenderer.prototype.configAnimation = function (animData) {\n    if ((this || _global).animationItem.wrapper) {\n      (this || _global).animationItem.container = createTag(\"canvas\");\n      var containerStyle = (this || _global).animationItem.container.style;\n      containerStyle.width = \"100%\";\n      containerStyle.height = \"100%\";\n      var origin = \"0px 0px 0px\";\n      containerStyle.transformOrigin = origin;\n      containerStyle.mozTransformOrigin = origin;\n      containerStyle.webkitTransformOrigin = origin;\n      containerStyle[\"-webkit-transform\"] = origin;\n\n      (this || _global).animationItem.wrapper.appendChild((this || _global).animationItem.container);\n\n      (this || _global).canvasContext = (this || _global).animationItem.container.getContext(\"2d\");\n\n      if ((this || _global).renderConfig.className) {\n        (this || _global).animationItem.container.setAttribute(\"class\", (this || _global).renderConfig.className);\n      }\n\n      if ((this || _global).renderConfig.id) {\n        (this || _global).animationItem.container.setAttribute(\"id\", (this || _global).renderConfig.id);\n      }\n    } else {\n      (this || _global).canvasContext = (this || _global).renderConfig.context;\n    }\n\n    (this || _global).data = animData;\n    (this || _global).layers = animData.layers;\n    (this || _global).transformCanvas = {\n      w: animData.w,\n      h: animData.h,\n      sx: 0,\n      sy: 0,\n      tx: 0,\n      ty: 0\n    };\n    this.setupGlobalData(animData, document.body);\n    (this || _global).globalData.canvasContext = (this || _global).canvasContext;\n    (this || _global).globalData.renderer = this || _global;\n    (this || _global).globalData.isDashed = false;\n    (this || _global).globalData.progressiveLoad = (this || _global).renderConfig.progressiveLoad;\n    (this || _global).globalData.transformCanvas = (this || _global).transformCanvas;\n    (this || _global).elements = createSizedArray(animData.layers.length);\n    this.updateContainerSize();\n  };\n\n  CanvasRenderer.prototype.updateContainerSize = function () {\n    this.reset();\n    var elementWidth;\n    var elementHeight;\n\n    if ((this || _global).animationItem.wrapper && (this || _global).animationItem.container) {\n      elementWidth = (this || _global).animationItem.wrapper.offsetWidth;\n      elementHeight = (this || _global).animationItem.wrapper.offsetHeight;\n\n      (this || _global).animationItem.container.setAttribute(\"width\", elementWidth * (this || _global).renderConfig.dpr);\n\n      (this || _global).animationItem.container.setAttribute(\"height\", elementHeight * (this || _global).renderConfig.dpr);\n    } else {\n      elementWidth = (this || _global).canvasContext.canvas.width * (this || _global).renderConfig.dpr;\n      elementHeight = (this || _global).canvasContext.canvas.height * (this || _global).renderConfig.dpr;\n    }\n\n    var elementRel;\n    var animationRel;\n\n    if ((this || _global).renderConfig.preserveAspectRatio.indexOf(\"meet\") !== -1 || (this || _global).renderConfig.preserveAspectRatio.indexOf(\"slice\") !== -1) {\n      var par = (this || _global).renderConfig.preserveAspectRatio.split(\" \");\n\n      var fillType = par[1] || \"meet\";\n      var pos = par[0] || \"xMidYMid\";\n      var xPos = pos.substr(0, 4);\n      var yPos = pos.substr(4);\n      elementRel = elementWidth / elementHeight;\n      animationRel = (this || _global).transformCanvas.w / (this || _global).transformCanvas.h;\n\n      if (animationRel > elementRel && fillType === \"meet\" || animationRel < elementRel && fillType === \"slice\") {\n        (this || _global).transformCanvas.sx = elementWidth / ((this || _global).transformCanvas.w / (this || _global).renderConfig.dpr);\n        (this || _global).transformCanvas.sy = elementWidth / ((this || _global).transformCanvas.w / (this || _global).renderConfig.dpr);\n      } else {\n        (this || _global).transformCanvas.sx = elementHeight / ((this || _global).transformCanvas.h / (this || _global).renderConfig.dpr);\n        (this || _global).transformCanvas.sy = elementHeight / ((this || _global).transformCanvas.h / (this || _global).renderConfig.dpr);\n      }\n\n      if (xPos === \"xMid\" && (animationRel < elementRel && fillType === \"meet\" || animationRel > elementRel && fillType === \"slice\")) {\n        (this || _global).transformCanvas.tx = (elementWidth - (this || _global).transformCanvas.w * (elementHeight / (this || _global).transformCanvas.h)) / 2 * (this || _global).renderConfig.dpr;\n      } else if (xPos === \"xMax\" && (animationRel < elementRel && fillType === \"meet\" || animationRel > elementRel && fillType === \"slice\")) {\n        (this || _global).transformCanvas.tx = (elementWidth - (this || _global).transformCanvas.w * (elementHeight / (this || _global).transformCanvas.h)) * (this || _global).renderConfig.dpr;\n      } else {\n        (this || _global).transformCanvas.tx = 0;\n      }\n\n      if (yPos === \"YMid\" && (animationRel > elementRel && fillType === \"meet\" || animationRel < elementRel && fillType === \"slice\")) {\n        (this || _global).transformCanvas.ty = (elementHeight - (this || _global).transformCanvas.h * (elementWidth / (this || _global).transformCanvas.w)) / 2 * (this || _global).renderConfig.dpr;\n      } else if (yPos === \"YMax\" && (animationRel > elementRel && fillType === \"meet\" || animationRel < elementRel && fillType === \"slice\")) {\n        (this || _global).transformCanvas.ty = (elementHeight - (this || _global).transformCanvas.h * (elementWidth / (this || _global).transformCanvas.w)) * (this || _global).renderConfig.dpr;\n      } else {\n        (this || _global).transformCanvas.ty = 0;\n      }\n    } else if ((this || _global).renderConfig.preserveAspectRatio === \"none\") {\n      (this || _global).transformCanvas.sx = elementWidth / ((this || _global).transformCanvas.w / (this || _global).renderConfig.dpr);\n      (this || _global).transformCanvas.sy = elementHeight / ((this || _global).transformCanvas.h / (this || _global).renderConfig.dpr);\n      (this || _global).transformCanvas.tx = 0;\n      (this || _global).transformCanvas.ty = 0;\n    } else {\n      (this || _global).transformCanvas.sx = (this || _global).renderConfig.dpr;\n      (this || _global).transformCanvas.sy = (this || _global).renderConfig.dpr;\n      (this || _global).transformCanvas.tx = 0;\n      (this || _global).transformCanvas.ty = 0;\n    }\n\n    (this || _global).transformCanvas.props = [(this || _global).transformCanvas.sx, 0, 0, 0, 0, (this || _global).transformCanvas.sy, 0, 0, 0, 0, 1, 0, (this || _global).transformCanvas.tx, (this || _global).transformCanvas.ty, 0, 1];\n    /* var i, len = this.elements.length;\r\n      for(i=0;i<len;i+=1){\r\n          if(this.elements[i] && this.elements[i].data.ty === 0){\r\n              this.elements[i].resize(this.globalData.transformCanvas);\r\n          }\r\n      } */\n\n    this.ctxTransform((this || _global).transformCanvas.props);\n\n    (this || _global).canvasContext.beginPath();\n\n    (this || _global).canvasContext.rect(0, 0, (this || _global).transformCanvas.w, (this || _global).transformCanvas.h);\n\n    (this || _global).canvasContext.closePath();\n\n    (this || _global).canvasContext.clip();\n\n    this.renderFrame((this || _global).renderedFrame, true);\n  };\n\n  CanvasRenderer.prototype.destroy = function () {\n    if ((this || _global).renderConfig.clearCanvas && (this || _global).animationItem.wrapper) {\n      (this || _global).animationItem.wrapper.innerText = \"\";\n    }\n\n    var i;\n    var len = (this || _global).layers ? (this || _global).layers.length : 0;\n\n    for (i = len - 1; i >= 0; i -= 1) {\n      if ((this || _global).elements[i]) {\n        (this || _global).elements[i].destroy();\n      }\n    }\n\n    (this || _global).elements.length = 0;\n    (this || _global).globalData.canvasContext = null;\n    (this || _global).animationItem.container = null;\n    (this || _global).destroyed = true;\n  };\n\n  CanvasRenderer.prototype.renderFrame = function (num, forceRender) {\n    if ((this || _global).renderedFrame === num && (this || _global).renderConfig.clearCanvas === true && !forceRender || (this || _global).destroyed || num === -1) {\n      return;\n    }\n\n    (this || _global).renderedFrame = num;\n    (this || _global).globalData.frameNum = num - (this || _global).animationItem._isFirstFrame;\n    (this || _global).globalData.frameId += 1;\n    (this || _global).globalData._mdf = !(this || _global).renderConfig.clearCanvas || forceRender;\n    (this || _global).globalData.projectInterface.currentFrame = num; // console.log('--------');\n    // console.log('NEW: ',num);\n\n    var i;\n    var len = (this || _global).layers.length;\n\n    if (!(this || _global).completeLayers) {\n      this.checkLayers(num);\n    }\n\n    for (i = 0; i < len; i += 1) {\n      if ((this || _global).completeLayers || (this || _global).elements[i]) {\n        (this || _global).elements[i].prepareFrame(num - (this || _global).layers[i].st);\n      }\n    }\n\n    if ((this || _global).globalData._mdf) {\n      if ((this || _global).renderConfig.clearCanvas === true) {\n        (this || _global).canvasContext.clearRect(0, 0, (this || _global).transformCanvas.w, (this || _global).transformCanvas.h);\n      } else {\n        this.save();\n      }\n\n      for (i = len - 1; i >= 0; i -= 1) {\n        if ((this || _global).completeLayers || (this || _global).elements[i]) {\n          (this || _global).elements[i].renderFrame();\n        }\n      }\n\n      if ((this || _global).renderConfig.clearCanvas !== true) {\n        this.restore();\n      }\n    }\n  };\n\n  CanvasRenderer.prototype.buildItem = function (pos) {\n    var elements = (this || _global).elements;\n\n    if (elements[pos] || (this || _global).layers[pos].ty === 99) {\n      return;\n    }\n\n    var element = this.createItem((this || _global).layers[pos], this || _global, (this || _global).globalData);\n    elements[pos] = element;\n    element.initExpressions();\n    /* if(this.layers[pos].ty === 0){\r\n          element.resize(this.globalData.transformCanvas);\r\n      } */\n  };\n\n  CanvasRenderer.prototype.checkPendingElements = function () {\n    while ((this || _global).pendingElements.length) {\n      var element = (this || _global).pendingElements.pop();\n\n      element.checkParenting();\n    }\n  };\n\n  CanvasRenderer.prototype.hide = function () {\n    (this || _global).animationItem.container.style.display = \"none\";\n  };\n\n  CanvasRenderer.prototype.show = function () {\n    (this || _global).animationItem.container.style.display = \"block\";\n  };\n  /* global extendPrototype, BaseRenderer, SVGRenderer, SVGShapeElement, HShapeElement, SVGTextLottieElement,\r\n  HTextElement, HCameraElement, IImageElement, HImageElement, SVGCompElement, HCompElement, ISolidElement,\r\n  HSolidElement, styleDiv, createTag, createNS */\n\n\n  function HybridRenderer(animationItem, config) {\n    (this || _global).animationItem = animationItem;\n    (this || _global).layers = null;\n    (this || _global).renderedFrame = -1;\n    (this || _global).renderConfig = {\n      className: config && config.className || \"\",\n      imagePreserveAspectRatio: config && config.imagePreserveAspectRatio || \"xMidYMid slice\",\n      hideOnTransparent: !(config && config.hideOnTransparent === false),\n      filterSize: {\n        width: config && config.filterSize && config.filterSize.width || \"400%\",\n        height: config && config.filterSize && config.filterSize.height || \"400%\",\n        x: config && config.filterSize && config.filterSize.x || \"-100%\",\n        y: config && config.filterSize && config.filterSize.y || \"-100%\"\n      }\n    };\n    (this || _global).globalData = {\n      _mdf: false,\n      frameNum: -1,\n      renderConfig: (this || _global).renderConfig\n    };\n    (this || _global).pendingElements = [];\n    (this || _global).elements = [];\n    (this || _global).threeDElements = [];\n    (this || _global).destroyed = false;\n    (this || _global).camera = null;\n    (this || _global).supports3d = true;\n    (this || _global).rendererType = \"html\";\n  }\n\n  extendPrototype([BaseRenderer], HybridRenderer);\n  HybridRenderer.prototype.buildItem = SVGRenderer.prototype.buildItem;\n\n  HybridRenderer.prototype.checkPendingElements = function () {\n    while ((this || _global).pendingElements.length) {\n      var element = (this || _global).pendingElements.pop();\n\n      element.checkParenting();\n    }\n  };\n\n  HybridRenderer.prototype.appendElementInPos = function (element, pos) {\n    var newDOMElement = element.getBaseElement();\n\n    if (!newDOMElement) {\n      return;\n    }\n\n    var layer = (this || _global).layers[pos];\n\n    if (!layer.ddd || !(this || _global).supports3d) {\n      if ((this || _global).threeDElements) {\n        this.addTo3dContainer(newDOMElement, pos);\n      } else {\n        var i = 0;\n        var nextDOMElement;\n        var nextLayer;\n        var tmpDOMElement;\n\n        while (i < pos) {\n          if ((this || _global).elements[i] && (this || _global).elements[i] !== true && (this || _global).elements[i].getBaseElement) {\n            nextLayer = (this || _global).elements[i];\n            tmpDOMElement = (this || _global).layers[i].ddd ? this.getThreeDContainerByPos(i) : nextLayer.getBaseElement();\n            nextDOMElement = tmpDOMElement || nextDOMElement;\n          }\n\n          i += 1;\n        }\n\n        if (nextDOMElement) {\n          if (!layer.ddd || !(this || _global).supports3d) {\n            (this || _global).layerElement.insertBefore(newDOMElement, nextDOMElement);\n          }\n        } else if (!layer.ddd || !(this || _global).supports3d) {\n          (this || _global).layerElement.appendChild(newDOMElement);\n        }\n      }\n    } else {\n      this.addTo3dContainer(newDOMElement, pos);\n    }\n  };\n\n  HybridRenderer.prototype.createShape = function (data) {\n    if (!(this || _global).supports3d) {\n      return new SVGShapeElement(data, (this || _global).globalData, this || _global);\n    }\n\n    return new HShapeElement(data, (this || _global).globalData, this || _global);\n  };\n\n  HybridRenderer.prototype.createText = function (data) {\n    if (!(this || _global).supports3d) {\n      return new SVGTextLottieElement(data, (this || _global).globalData, this || _global);\n    }\n\n    return new HTextElement(data, (this || _global).globalData, this || _global);\n  };\n\n  HybridRenderer.prototype.createCamera = function (data) {\n    (this || _global).camera = new HCameraElement(data, (this || _global).globalData, this || _global);\n    return (this || _global).camera;\n  };\n\n  HybridRenderer.prototype.createImage = function (data) {\n    if (!(this || _global).supports3d) {\n      return new IImageElement(data, (this || _global).globalData, this || _global);\n    }\n\n    return new HImageElement(data, (this || _global).globalData, this || _global);\n  };\n\n  HybridRenderer.prototype.createComp = function (data) {\n    if (!(this || _global).supports3d) {\n      return new SVGCompElement(data, (this || _global).globalData, this || _global);\n    }\n\n    return new HCompElement(data, (this || _global).globalData, this || _global);\n  };\n\n  HybridRenderer.prototype.createSolid = function (data) {\n    if (!(this || _global).supports3d) {\n      return new ISolidElement(data, (this || _global).globalData, this || _global);\n    }\n\n    return new HSolidElement(data, (this || _global).globalData, this || _global);\n  };\n\n  HybridRenderer.prototype.createNull = SVGRenderer.prototype.createNull;\n\n  HybridRenderer.prototype.getThreeDContainerByPos = function (pos) {\n    var i = 0;\n    var len = (this || _global).threeDElements.length;\n\n    while (i < len) {\n      if ((this || _global).threeDElements[i].startPos <= pos && (this || _global).threeDElements[i].endPos >= pos) {\n        return (this || _global).threeDElements[i].perspectiveElem;\n      }\n\n      i += 1;\n    }\n\n    return null;\n  };\n\n  HybridRenderer.prototype.createThreeDContainer = function (pos, type) {\n    var perspectiveElem = createTag(\"div\");\n    var style;\n    var containerStyle;\n    styleDiv(perspectiveElem);\n    var container = createTag(\"div\");\n    styleDiv(container);\n\n    if (type === \"3d\") {\n      style = perspectiveElem.style;\n      style.width = (this || _global).globalData.compSize.w + \"px\";\n      style.height = (this || _global).globalData.compSize.h + \"px\";\n      var center = \"50% 50%\";\n      style.webkitTransformOrigin = center;\n      style.mozTransformOrigin = center;\n      style.transformOrigin = center;\n      containerStyle = container.style;\n      var matrix = \"matrix3d(1,0,0,0,0,1,0,0,0,0,1,0,0,0,0,1)\";\n      containerStyle.transform = matrix;\n      containerStyle.webkitTransform = matrix;\n    }\n\n    perspectiveElem.appendChild(container); // this.resizerElem.appendChild(perspectiveElem);\n\n    var threeDContainerData = {\n      container: container,\n      perspectiveElem: perspectiveElem,\n      startPos: pos,\n      endPos: pos,\n      type: type\n    };\n\n    (this || _global).threeDElements.push(threeDContainerData);\n\n    return threeDContainerData;\n  };\n\n  HybridRenderer.prototype.build3dContainers = function () {\n    var i;\n    var len = (this || _global).layers.length;\n    var lastThreeDContainerData;\n    var currentContainer = \"\";\n\n    for (i = 0; i < len; i += 1) {\n      if ((this || _global).layers[i].ddd && (this || _global).layers[i].ty !== 3) {\n        if (currentContainer !== \"3d\") {\n          currentContainer = \"3d\";\n          lastThreeDContainerData = this.createThreeDContainer(i, \"3d\");\n        }\n\n        lastThreeDContainerData.endPos = Math.max(lastThreeDContainerData.endPos, i);\n      } else {\n        if (currentContainer !== \"2d\") {\n          currentContainer = \"2d\";\n          lastThreeDContainerData = this.createThreeDContainer(i, \"2d\");\n        }\n\n        lastThreeDContainerData.endPos = Math.max(lastThreeDContainerData.endPos, i);\n      }\n    }\n\n    len = (this || _global).threeDElements.length;\n\n    for (i = len - 1; i >= 0; i -= 1) {\n      (this || _global).resizerElem.appendChild((this || _global).threeDElements[i].perspectiveElem);\n    }\n  };\n\n  HybridRenderer.prototype.addTo3dContainer = function (elem, pos) {\n    var i = 0;\n    var len = (this || _global).threeDElements.length;\n\n    while (i < len) {\n      if (pos <= (this || _global).threeDElements[i].endPos) {\n        var j = (this || _global).threeDElements[i].startPos;\n        var nextElement;\n\n        while (j < pos) {\n          if ((this || _global).elements[j] && (this || _global).elements[j].getBaseElement) {\n            nextElement = (this || _global).elements[j].getBaseElement();\n          }\n\n          j += 1;\n        }\n\n        if (nextElement) {\n          (this || _global).threeDElements[i].container.insertBefore(elem, nextElement);\n        } else {\n          (this || _global).threeDElements[i].container.appendChild(elem);\n        }\n\n        break;\n      }\n\n      i += 1;\n    }\n  };\n\n  HybridRenderer.prototype.configAnimation = function (animData) {\n    var resizerElem = createTag(\"div\");\n    var wrapper = (this || _global).animationItem.wrapper;\n    var style = resizerElem.style;\n    style.width = animData.w + \"px\";\n    style.height = animData.h + \"px\";\n    (this || _global).resizerElem = resizerElem;\n    styleDiv(resizerElem);\n    style.transformStyle = \"flat\";\n    style.mozTransformStyle = \"flat\";\n    style.webkitTransformStyle = \"flat\";\n\n    if ((this || _global).renderConfig.className) {\n      resizerElem.setAttribute(\"class\", (this || _global).renderConfig.className);\n    }\n\n    wrapper.appendChild(resizerElem);\n    style.overflow = \"hidden\";\n    var svg = createNS(\"svg\");\n    svg.setAttribute(\"width\", \"1\");\n    svg.setAttribute(\"height\", \"1\");\n    styleDiv(svg);\n\n    (this || _global).resizerElem.appendChild(svg);\n\n    var defs = createNS(\"defs\");\n    svg.appendChild(defs);\n    (this || _global).data = animData; // Mask animation\n\n    this.setupGlobalData(animData, svg);\n    (this || _global).globalData.defs = defs;\n    (this || _global).layers = animData.layers;\n    (this || _global).layerElement = (this || _global).resizerElem;\n    this.build3dContainers();\n    this.updateContainerSize();\n  };\n\n  HybridRenderer.prototype.destroy = function () {\n    if ((this || _global).animationItem.wrapper) {\n      (this || _global).animationItem.wrapper.innerText = \"\";\n    }\n\n    (this || _global).animationItem.container = null;\n    (this || _global).globalData.defs = null;\n    var i;\n    var len = (this || _global).layers ? (this || _global).layers.length : 0;\n\n    for (i = 0; i < len; i += 1) {\n      (this || _global).elements[i].destroy();\n    }\n\n    (this || _global).elements.length = 0;\n    (this || _global).destroyed = true;\n    (this || _global).animationItem = null;\n  };\n\n  HybridRenderer.prototype.updateContainerSize = function () {\n    var elementWidth = (this || _global).animationItem.wrapper.offsetWidth;\n    var elementHeight = (this || _global).animationItem.wrapper.offsetHeight;\n    var elementRel = elementWidth / elementHeight;\n    var animationRel = (this || _global).globalData.compSize.w / (this || _global).globalData.compSize.h;\n    var sx;\n    var sy;\n    var tx;\n    var ty;\n\n    if (animationRel > elementRel) {\n      sx = elementWidth / (this || _global).globalData.compSize.w;\n      sy = elementWidth / (this || _global).globalData.compSize.w;\n      tx = 0;\n      ty = (elementHeight - (this || _global).globalData.compSize.h * (elementWidth / (this || _global).globalData.compSize.w)) / 2;\n    } else {\n      sx = elementHeight / (this || _global).globalData.compSize.h;\n      sy = elementHeight / (this || _global).globalData.compSize.h;\n      tx = (elementWidth - (this || _global).globalData.compSize.w * (elementHeight / (this || _global).globalData.compSize.h)) / 2;\n      ty = 0;\n    }\n\n    var style = (this || _global).resizerElem.style;\n    style.webkitTransform = \"matrix3d(\" + sx + \",0,0,0,0,\" + sy + \",0,0,0,0,1,0,\" + tx + \",\" + ty + \",0,1)\";\n    style.transform = style.webkitTransform;\n  };\n\n  HybridRenderer.prototype.renderFrame = SVGRenderer.prototype.renderFrame;\n\n  HybridRenderer.prototype.hide = function () {\n    (this || _global).resizerElem.style.display = \"none\";\n  };\n\n  HybridRenderer.prototype.show = function () {\n    (this || _global).resizerElem.style.display = \"block\";\n  };\n\n  HybridRenderer.prototype.initItems = function () {\n    this.buildAllItems();\n\n    if ((this || _global).camera) {\n      (this || _global).camera.setup();\n    } else {\n      var cWidth = (this || _global).globalData.compSize.w;\n      var cHeight = (this || _global).globalData.compSize.h;\n      var i;\n      var len = (this || _global).threeDElements.length;\n\n      for (i = 0; i < len; i += 1) {\n        var style = (this || _global).threeDElements[i].perspectiveElem.style;\n        style.webkitPerspective = Math.sqrt(Math.pow(cWidth, 2) + Math.pow(cHeight, 2)) + \"px\";\n        style.perspective = style.webkitPerspective;\n      }\n    }\n  };\n\n  HybridRenderer.prototype.searchExtraCompositions = function (assets) {\n    var i;\n    var len = assets.length;\n    var floatingContainer = createTag(\"div\");\n\n    for (i = 0; i < len; i += 1) {\n      if (assets[i].xt) {\n        var comp = this.createComp(assets[i], floatingContainer, (this || _global).globalData.comp, null);\n        comp.initExpressions();\n\n        (this || _global).globalData.projectInterface.registerComposition(comp);\n      }\n    }\n  };\n  /* global createSizedArray, createElementID, PropertyFactory, ShapePropertyFactory, createNS, locationHref */\n\n\n  function MaskElement(data, element, globalData) {\n    (this || _global).data = data;\n    (this || _global).element = element;\n    (this || _global).globalData = globalData;\n    (this || _global).storedData = [];\n    (this || _global).masksProperties = (this || _global).data.masksProperties || [];\n    (this || _global).maskElement = null;\n    var defs = (this || _global).globalData.defs;\n    var i;\n    var len = (this || _global).masksProperties ? (this || _global).masksProperties.length : 0;\n    (this || _global).viewData = createSizedArray(len);\n    (this || _global).solidPath = \"\";\n    var path;\n    var properties = (this || _global).masksProperties;\n    var count = 0;\n    var currentMasks = [];\n    var j;\n    var jLen;\n    var layerId = createElementID();\n    var rect;\n    var expansor;\n    var feMorph;\n    var x;\n    var maskType = \"clipPath\";\n    var maskRef = \"clip-path\";\n\n    for (i = 0; i < len; i += 1) {\n      if (properties[i].mode !== \"a\" && properties[i].mode !== \"n\" || properties[i].inv || properties[i].o.k !== 100 || properties[i].o.x) {\n        maskType = \"mask\";\n        maskRef = \"mask\";\n      }\n\n      if ((properties[i].mode === \"s\" || properties[i].mode === \"i\") && count === 0) {\n        rect = createNS(\"rect\");\n        rect.setAttribute(\"fill\", \"#ffffff\");\n        rect.setAttribute(\"width\", (this || _global).element.comp.data.w || 0);\n        rect.setAttribute(\"height\", (this || _global).element.comp.data.h || 0);\n        currentMasks.push(rect);\n      } else {\n        rect = null;\n      }\n\n      path = createNS(\"path\");\n\n      if (properties[i].mode === \"n\") {\n        // TODO move this to a factory or to a constructor\n        (this || _global).viewData[i] = {\n          op: PropertyFactory.getProp((this || _global).element, properties[i].o, 0, 0.01, (this || _global).element),\n          prop: ShapePropertyFactory.getShapeProp((this || _global).element, properties[i], 3),\n          elem: path,\n          lastPath: \"\"\n        };\n        defs.appendChild(path);\n      } else {\n        count += 1;\n        path.setAttribute(\"fill\", properties[i].mode === \"s\" ? \"#000000\" : \"#ffffff\");\n        path.setAttribute(\"clip-rule\", \"nonzero\");\n        var filterID;\n\n        if (properties[i].x.k !== 0) {\n          maskType = \"mask\";\n          maskRef = \"mask\";\n          x = PropertyFactory.getProp((this || _global).element, properties[i].x, 0, null, (this || _global).element);\n          filterID = createElementID();\n          expansor = createNS(\"filter\");\n          expansor.setAttribute(\"id\", filterID);\n          feMorph = createNS(\"feMorphology\");\n          feMorph.setAttribute(\"operator\", \"erode\");\n          feMorph.setAttribute(\"in\", \"SourceGraphic\");\n          feMorph.setAttribute(\"radius\", \"0\");\n          expansor.appendChild(feMorph);\n          defs.appendChild(expansor);\n          path.setAttribute(\"stroke\", properties[i].mode === \"s\" ? \"#000000\" : \"#ffffff\");\n        } else {\n          feMorph = null;\n          x = null;\n        } // TODO move this to a factory or to a constructor\n\n\n        (this || _global).storedData[i] = {\n          elem: path,\n          x: x,\n          expan: feMorph,\n          lastPath: \"\",\n          lastOperator: \"\",\n          filterId: filterID,\n          lastRadius: 0\n        };\n\n        if (properties[i].mode === \"i\") {\n          jLen = currentMasks.length;\n          var g = createNS(\"g\");\n\n          for (j = 0; j < jLen; j += 1) {\n            g.appendChild(currentMasks[j]);\n          }\n\n          var mask = createNS(\"mask\");\n          mask.setAttribute(\"mask-type\", \"alpha\");\n          mask.setAttribute(\"id\", layerId + \"_\" + count);\n          mask.appendChild(path);\n          defs.appendChild(mask);\n          g.setAttribute(\"mask\", \"url(\" + locationHref + \"#\" + layerId + \"_\" + count + \")\");\n          currentMasks.length = 0;\n          currentMasks.push(g);\n        } else {\n          currentMasks.push(path);\n        }\n\n        if (properties[i].inv && !(this || _global).solidPath) {\n          (this || _global).solidPath = this.createLayerSolidPath();\n        } // TODO move this to a factory or to a constructor\n\n\n        (this || _global).viewData[i] = {\n          elem: path,\n          lastPath: \"\",\n          op: PropertyFactory.getProp((this || _global).element, properties[i].o, 0, 0.01, (this || _global).element),\n          prop: ShapePropertyFactory.getShapeProp((this || _global).element, properties[i], 3),\n          invRect: rect\n        };\n\n        if (!(this || _global).viewData[i].prop.k) {\n          this.drawPath(properties[i], (this || _global).viewData[i].prop.v, (this || _global).viewData[i]);\n        }\n      }\n    }\n\n    (this || _global).maskElement = createNS(maskType);\n    len = currentMasks.length;\n\n    for (i = 0; i < len; i += 1) {\n      (this || _global).maskElement.appendChild(currentMasks[i]);\n    }\n\n    if (count > 0) {\n      (this || _global).maskElement.setAttribute(\"id\", layerId);\n\n      (this || _global).element.maskedElement.setAttribute(maskRef, \"url(\" + locationHref + \"#\" + layerId + \")\");\n\n      defs.appendChild((this || _global).maskElement);\n    }\n\n    if ((this || _global).viewData.length) {\n      (this || _global).element.addRenderableComponent(this || _global);\n    }\n  }\n\n  MaskElement.prototype.getMaskProperty = function (pos) {\n    return (this || _global).viewData[pos].prop;\n  };\n\n  MaskElement.prototype.renderFrame = function (isFirstFrame) {\n    var finalMat = (this || _global).element.finalTransform.mat;\n    var i;\n    var len = (this || _global).masksProperties.length;\n\n    for (i = 0; i < len; i += 1) {\n      if ((this || _global).viewData[i].prop._mdf || isFirstFrame) {\n        this.drawPath((this || _global).masksProperties[i], (this || _global).viewData[i].prop.v, (this || _global).viewData[i]);\n      }\n\n      if ((this || _global).viewData[i].op._mdf || isFirstFrame) {\n        (this || _global).viewData[i].elem.setAttribute(\"fill-opacity\", (this || _global).viewData[i].op.v);\n      }\n\n      if ((this || _global).masksProperties[i].mode !== \"n\") {\n        if ((this || _global).viewData[i].invRect && ((this || _global).element.finalTransform.mProp._mdf || isFirstFrame)) {\n          (this || _global).viewData[i].invRect.setAttribute(\"transform\", finalMat.getInverseMatrix().to2dCSS());\n        }\n\n        if ((this || _global).storedData[i].x && ((this || _global).storedData[i].x._mdf || isFirstFrame)) {\n          var feMorph = (this || _global).storedData[i].expan;\n\n          if ((this || _global).storedData[i].x.v < 0) {\n            if ((this || _global).storedData[i].lastOperator !== \"erode\") {\n              (this || _global).storedData[i].lastOperator = \"erode\";\n\n              (this || _global).storedData[i].elem.setAttribute(\"filter\", \"url(\" + locationHref + \"#\" + (this || _global).storedData[i].filterId + \")\");\n            }\n\n            feMorph.setAttribute(\"radius\", -(this || _global).storedData[i].x.v);\n          } else {\n            if ((this || _global).storedData[i].lastOperator !== \"dilate\") {\n              (this || _global).storedData[i].lastOperator = \"dilate\";\n\n              (this || _global).storedData[i].elem.setAttribute(\"filter\", null);\n            }\n\n            (this || _global).storedData[i].elem.setAttribute(\"stroke-width\", (this || _global).storedData[i].x.v * 2);\n          }\n        }\n      }\n    }\n  };\n\n  MaskElement.prototype.getMaskelement = function () {\n    return (this || _global).maskElement;\n  };\n\n  MaskElement.prototype.createLayerSolidPath = function () {\n    var path = \"M0,0 \";\n    path += \" h\" + (this || _global).globalData.compSize.w;\n    path += \" v\" + (this || _global).globalData.compSize.h;\n    path += \" h-\" + (this || _global).globalData.compSize.w;\n    path += \" v-\" + (this || _global).globalData.compSize.h + \" \";\n    return path;\n  };\n\n  MaskElement.prototype.drawPath = function (pathData, pathNodes, viewData) {\n    var pathString = \" M\" + pathNodes.v[0][0] + \",\" + pathNodes.v[0][1];\n    var i;\n    var len;\n    len = pathNodes._length;\n\n    for (i = 1; i < len; i += 1) {\n      // pathString += \" C\"+pathNodes.o[i-1][0]+','+pathNodes.o[i-1][1] + \" \"+pathNodes.i[i][0]+','+pathNodes.i[i][1] + \" \"+pathNodes.v[i][0]+','+pathNodes.v[i][1];\n      pathString += \" C\" + pathNodes.o[i - 1][0] + \",\" + pathNodes.o[i - 1][1] + \" \" + pathNodes.i[i][0] + \",\" + pathNodes.i[i][1] + \" \" + pathNodes.v[i][0] + \",\" + pathNodes.v[i][1];\n    } // pathString += \" C\"+pathNodes.o[i-1][0]+','+pathNodes.o[i-1][1] + \" \"+pathNodes.i[0][0]+','+pathNodes.i[0][1] + \" \"+pathNodes.v[0][0]+','+pathNodes.v[0][1];\n\n\n    if (pathNodes.c && len > 1) {\n      pathString += \" C\" + pathNodes.o[i - 1][0] + \",\" + pathNodes.o[i - 1][1] + \" \" + pathNodes.i[0][0] + \",\" + pathNodes.i[0][1] + \" \" + pathNodes.v[0][0] + \",\" + pathNodes.v[0][1];\n    } // pathNodes.__renderedString = pathString;\n\n\n    if (viewData.lastPath !== pathString) {\n      var pathShapeValue = \"\";\n\n      if (viewData.elem) {\n        if (pathNodes.c) {\n          pathShapeValue = pathData.inv ? (this || _global).solidPath + pathString : pathString;\n        }\n\n        viewData.elem.setAttribute(\"d\", pathShapeValue);\n      }\n\n      viewData.lastPath = pathString;\n    }\n  };\n\n  MaskElement.prototype.destroy = function () {\n    (this || _global).element = null;\n    (this || _global).globalData = null;\n    (this || _global).maskElement = null;\n    (this || _global).data = null;\n    (this || _global).masksProperties = null;\n  };\n  /**\r\n   * @file\r\n   * Handles AE's layer parenting property.\r\n   *\r\n   */\n\n\n  function HierarchyElement() {}\n\n  HierarchyElement.prototype = {\n    /**\r\n       * @function\r\n       * Initializes hierarchy properties\r\n       *\r\n       */\n    initHierarchy: function () {\n      // element's parent list\n      (this || _global).hierarchy = []; // if element is parent of another layer _isParent will be true\n\n      (this || _global)._isParent = false;\n      this.checkParenting();\n    },\n\n    /**\r\n       * @function\r\n       * Sets layer's hierarchy.\r\n       * @param {array} hierarch\r\n       * layer's parent list\r\n       *\r\n       */\n    setHierarchy: function (hierarchy) {\n      (this || _global).hierarchy = hierarchy;\n    },\n\n    /**\r\n       * @function\r\n       * Sets layer as parent.\r\n       *\r\n       */\n    setAsParent: function () {\n      (this || _global)._isParent = true;\n    },\n\n    /**\r\n       * @function\r\n       * Searches layer's parenting chain\r\n       *\r\n       */\n    checkParenting: function () {\n      if ((this || _global).data.parent !== undefined) {\n        (this || _global).comp.buildElementParenting(this || _global, (this || _global).data.parent, []);\n      }\n    }\n  };\n  /**\r\n   * @file\r\n   * Handles element's layer frame update.\r\n   * Checks layer in point and out point\r\n   *\r\n   */\n\n  function FrameElement() {}\n\n  FrameElement.prototype = {\n    /**\r\n       * @function\r\n       * Initializes frame related properties.\r\n       *\r\n       */\n    initFrame: function () {\n      // set to true when inpoint is rendered\n      (this || _global)._isFirstFrame = false; // list of animated properties\n\n      (this || _global).dynamicProperties = []; // If layer has been modified in current tick this will be true\n\n      (this || _global)._mdf = false;\n    },\n\n    /**\r\n       * @function\r\n       * Calculates all dynamic values\r\n       *\r\n       * @param {number} num\r\n       * current frame number in Layer's time\r\n       * @param {boolean} isVisible\r\n       * if layers is currently in range\r\n       *\r\n       */\n    prepareProperties: function (num, isVisible) {\n      var i;\n      var len = (this || _global).dynamicProperties.length;\n\n      for (i = 0; i < len; i += 1) {\n        if (isVisible || (this || _global)._isParent && (this || _global).dynamicProperties[i].propType === \"transform\") {\n          (this || _global).dynamicProperties[i].getValue();\n\n          if ((this || _global).dynamicProperties[i]._mdf) {\n            (this || _global).globalData._mdf = true;\n            (this || _global)._mdf = true;\n          }\n        }\n      }\n    },\n    addDynamicProperty: function (prop) {\n      if ((this || _global).dynamicProperties.indexOf(prop) === -1) {\n        (this || _global).dynamicProperties.push(prop);\n      }\n    }\n  };\n  /* global TransformPropertyFactory, Matrix */\n\n  function TransformElement() {}\n\n  TransformElement.prototype = {\n    initTransform: function () {\n      (this || _global).finalTransform = {\n        mProp: (this || _global).data.ks ? TransformPropertyFactory.getTransformProperty(this || _global, (this || _global).data.ks, this || _global) : {\n          o: 0\n        },\n        _matMdf: false,\n        _opMdf: false,\n        mat: new Matrix()\n      };\n\n      if ((this || _global).data.ao) {\n        (this || _global).finalTransform.mProp.autoOriented = true;\n      } // TODO: check TYPE 11: Guided elements\n\n\n      if ((this || _global).data.ty !== 11) {// this.createElements();\n      }\n    },\n    renderTransform: function () {\n      (this || _global).finalTransform._opMdf = (this || _global).finalTransform.mProp.o._mdf || (this || _global)._isFirstFrame;\n      (this || _global).finalTransform._matMdf = (this || _global).finalTransform.mProp._mdf || (this || _global)._isFirstFrame;\n\n      if ((this || _global).hierarchy) {\n        var mat;\n        var finalMat = (this || _global).finalTransform.mat;\n        var i = 0;\n        var len = (this || _global).hierarchy.length; // Checking if any of the transformation matrices in the hierarchy chain has changed.\n\n        if (!(this || _global).finalTransform._matMdf) {\n          while (i < len) {\n            if ((this || _global).hierarchy[i].finalTransform.mProp._mdf) {\n              (this || _global).finalTransform._matMdf = true;\n              break;\n            }\n\n            i += 1;\n          }\n        }\n\n        if ((this || _global).finalTransform._matMdf) {\n          mat = (this || _global).finalTransform.mProp.v.props;\n          finalMat.cloneFromProps(mat);\n\n          for (i = 0; i < len; i += 1) {\n            mat = (this || _global).hierarchy[i].finalTransform.mProp.v.props;\n            finalMat.transform(mat[0], mat[1], mat[2], mat[3], mat[4], mat[5], mat[6], mat[7], mat[8], mat[9], mat[10], mat[11], mat[12], mat[13], mat[14], mat[15]);\n          }\n        }\n      }\n    },\n    globalToLocal: function (pt) {\n      var transforms = [];\n      transforms.push((this || _global).finalTransform);\n      var flag = true;\n      var comp = (this || _global).comp;\n\n      while (flag) {\n        if (comp.finalTransform) {\n          if (comp.data.hasMask) {\n            transforms.splice(0, 0, comp.finalTransform);\n          }\n\n          comp = comp.comp;\n        } else {\n          flag = false;\n        }\n      }\n\n      var i;\n      var len = transforms.length;\n      var ptNew;\n\n      for (i = 0; i < len; i += 1) {\n        ptNew = transforms[i].mat.applyToPointArray(0, 0, 0); // ptNew = transforms[i].mat.applyToPointArray(pt[0],pt[1],pt[2]);\n\n        pt = [pt[0] - ptNew[0], pt[1] - ptNew[1], 0];\n      }\n\n      return pt;\n    },\n    mHelper: new Matrix()\n  };\n\n  function RenderableElement() {}\n\n  RenderableElement.prototype = {\n    initRenderable: function () {\n      // layer's visibility related to inpoint and outpoint. Rename isVisible to isInRange\n      (this || _global).isInRange = false; // layer's display state\n\n      (this || _global).hidden = false; // If layer's transparency equals 0, it can be hidden\n\n      (this || _global).isTransparent = false; // list of animated components\n\n      (this || _global).renderableComponents = [];\n    },\n    addRenderableComponent: function (component) {\n      if ((this || _global).renderableComponents.indexOf(component) === -1) {\n        (this || _global).renderableComponents.push(component);\n      }\n    },\n    removeRenderableComponent: function (component) {\n      if ((this || _global).renderableComponents.indexOf(component) !== -1) {\n        (this || _global).renderableComponents.splice((this || _global).renderableComponents.indexOf(component), 1);\n      }\n    },\n    prepareRenderableFrame: function (num) {\n      this.checkLayerLimits(num);\n    },\n    checkTransparency: function () {\n      if ((this || _global).finalTransform.mProp.o.v <= 0) {\n        if (!(this || _global).isTransparent && (this || _global).globalData.renderConfig.hideOnTransparent) {\n          (this || _global).isTransparent = true;\n          this.hide();\n        }\n      } else if ((this || _global).isTransparent) {\n        (this || _global).isTransparent = false;\n        this.show();\n      }\n    },\n\n    /**\r\n       * @function\r\n       * Initializes frame related properties.\r\n       *\r\n       * @param {number} num\r\n       * current frame number in Layer's time\r\n       *\r\n       */\n    checkLayerLimits: function (num) {\n      if ((this || _global).data.ip - (this || _global).data.st <= num && (this || _global).data.op - (this || _global).data.st > num) {\n        if ((this || _global).isInRange !== true) {\n          (this || _global).globalData._mdf = true;\n          (this || _global)._mdf = true;\n          (this || _global).isInRange = true;\n          this.show();\n        }\n      } else if ((this || _global).isInRange !== false) {\n        (this || _global).globalData._mdf = true;\n        (this || _global).isInRange = false;\n        this.hide();\n      }\n    },\n    renderRenderable: function () {\n      var i;\n      var len = (this || _global).renderableComponents.length;\n\n      for (i = 0; i < len; i += 1) {\n        (this || _global).renderableComponents[i].renderFrame((this || _global)._isFirstFrame);\n      }\n      /* this.maskManager.renderFrame(this.finalTransform.mat);\r\n          this.renderableEffectsManager.renderFrame(this._isFirstFrame); */\n\n    },\n    sourceRectAtTime: function () {\n      return {\n        top: 0,\n        left: 0,\n        width: 100,\n        height: 100\n      };\n    },\n    getLayerSize: function () {\n      if ((this || _global).data.ty === 5) {\n        return {\n          w: (this || _global).data.textData.width,\n          h: (this || _global).data.textData.height\n        };\n      }\n\n      return {\n        w: (this || _global).data.width,\n        h: (this || _global).data.height\n      };\n    }\n  };\n  /* global extendPrototype, RenderableElement, createProxyFunction */\n\n  function RenderableDOMElement() {}\n\n  (function () {\n    var _prototype = {\n      initElement: function (data, globalData, comp) {\n        this.initFrame();\n        this.initBaseData(data, globalData, comp);\n        this.initTransform(data, globalData, comp);\n        this.initHierarchy();\n        this.initRenderable();\n        this.initRendererElement();\n        this.createContainerElements();\n        this.createRenderableComponents();\n        this.createContent();\n        this.hide();\n      },\n      hide: function () {\n        if (!(this || _global).hidden && (!(this || _global).isInRange || (this || _global).isTransparent)) {\n          var elem = (this || _global).baseElement || (this || _global).layerElement;\n          elem.style.display = \"none\";\n          (this || _global).hidden = true;\n        }\n      },\n      show: function () {\n        if ((this || _global).isInRange && !(this || _global).isTransparent) {\n          if (!(this || _global).data.hd) {\n            var elem = (this || _global).baseElement || (this || _global).layerElement;\n            elem.style.display = \"block\";\n          }\n\n          (this || _global).hidden = false;\n          (this || _global)._isFirstFrame = true;\n        }\n      },\n      renderFrame: function () {\n        // If it is exported as hidden (data.hd === true) no need to render\n        // If it is not visible no need to render\n        if ((this || _global).data.hd || (this || _global).hidden) {\n          return;\n        }\n\n        this.renderTransform();\n        this.renderRenderable();\n        this.renderElement();\n        this.renderInnerContent();\n\n        if ((this || _global)._isFirstFrame) {\n          (this || _global)._isFirstFrame = false;\n        }\n      },\n      renderInnerContent: function () {},\n      prepareFrame: function (num) {\n        (this || _global)._mdf = false;\n        this.prepareRenderableFrame(num);\n        this.prepareProperties(num, (this || _global).isInRange);\n        this.checkTransparency();\n      },\n      destroy: function () {\n        (this || _global).innerElem = null;\n        this.destroyBaseElement();\n      }\n    };\n    extendPrototype([RenderableElement, createProxyFunction(_prototype)], RenderableDOMElement);\n  })();\n  /* exported ProcessedElement */\n\n\n  function ProcessedElement(element, position) {\n    (this || _global).elem = element;\n    (this || _global).pos = position;\n  }\n  /* global createNS */\n\n\n  function SVGStyleData(data, level) {\n    (this || _global).data = data;\n    (this || _global).type = data.ty;\n    (this || _global).d = \"\";\n    (this || _global).lvl = level;\n    (this || _global)._mdf = false;\n    (this || _global).closed = data.hd === true;\n    (this || _global).pElem = createNS(\"path\");\n    (this || _global).msElem = null;\n  }\n\n  SVGStyleData.prototype.reset = function () {\n    (this || _global).d = \"\";\n    (this || _global)._mdf = false;\n  };\n\n  function SVGShapeData(transformers, level, shape) {\n    (this || _global).caches = [];\n    (this || _global).styles = [];\n    (this || _global).transformers = transformers;\n    (this || _global).lStr = \"\";\n    (this || _global).sh = shape;\n    (this || _global).lvl = level; // TODO find if there are some cases where _isAnimated can be false.\n    // For now, since shapes add up with other shapes. They have to be calculated every time.\n    // One way of finding out is checking if all styles associated to this shape depend only of this shape\n\n    (this || _global)._isAnimated = !!shape.k; // TODO: commenting this for now since all shapes are animated\n\n    var i = 0;\n    var len = transformers.length;\n\n    while (i < len) {\n      if (transformers[i].mProps.dynamicProperties.length) {\n        (this || _global)._isAnimated = true;\n        break;\n      }\n\n      i += 1;\n    }\n  }\n\n  SVGShapeData.prototype.setAsAnimated = function () {\n    (this || _global)._isAnimated = true;\n  };\n  /* exported SVGTransformData */\n\n\n  function SVGTransformData(mProps, op, container) {\n    (this || _global).transform = {\n      mProps: mProps,\n      op: op,\n      container: container\n    };\n    (this || _global).elements = [];\n    (this || _global)._isAnimated = (this || _global).transform.mProps.dynamicProperties.length || (this || _global).transform.op.effectsSequence.length;\n  }\n  /* global DashProperty, PropertyFactory, extendPrototype, DynamicPropertyContainer */\n\n\n  function SVGStrokeStyleData(elem, data, styleOb) {\n    this.initDynamicPropertyContainer(elem);\n    (this || _global).getValue = (this || _global).iterateDynamicProperties;\n    (this || _global).o = PropertyFactory.getProp(elem, data.o, 0, 0.01, this || _global);\n    (this || _global).w = PropertyFactory.getProp(elem, data.w, 0, null, this || _global);\n    (this || _global).d = new DashProperty(elem, data.d || {}, \"svg\", this || _global);\n    (this || _global).c = PropertyFactory.getProp(elem, data.c, 1, 255, this || _global);\n    (this || _global).style = styleOb;\n    (this || _global)._isAnimated = !!(this || _global)._isAnimated;\n  }\n\n  extendPrototype([DynamicPropertyContainer], SVGStrokeStyleData);\n  /* global PropertyFactory, extendPrototype, DynamicPropertyContainer */\n\n  function SVGFillStyleData(elem, data, styleOb) {\n    this.initDynamicPropertyContainer(elem);\n    (this || _global).getValue = (this || _global).iterateDynamicProperties;\n    (this || _global).o = PropertyFactory.getProp(elem, data.o, 0, 0.01, this || _global);\n    (this || _global).c = PropertyFactory.getProp(elem, data.c, 1, 255, this || _global);\n    (this || _global).style = styleOb;\n  }\n\n  extendPrototype([DynamicPropertyContainer], SVGFillStyleData);\n  /* global PropertyFactory, degToRads, GradientProperty, createElementID, createNS, locationHref,\r\n  extendPrototype, DynamicPropertyContainer */\n\n  function SVGGradientFillStyleData(elem, data, styleOb) {\n    this.initDynamicPropertyContainer(elem);\n    (this || _global).getValue = (this || _global).iterateDynamicProperties;\n    this.initGradientData(elem, data, styleOb);\n  }\n\n  SVGGradientFillStyleData.prototype.initGradientData = function (elem, data, styleOb) {\n    (this || _global).o = PropertyFactory.getProp(elem, data.o, 0, 0.01, this || _global);\n    (this || _global).s = PropertyFactory.getProp(elem, data.s, 1, null, this || _global);\n    (this || _global).e = PropertyFactory.getProp(elem, data.e, 1, null, this || _global);\n    (this || _global).h = PropertyFactory.getProp(elem, data.h || {\n      k: 0\n    }, 0, 0.01, this || _global);\n    (this || _global).a = PropertyFactory.getProp(elem, data.a || {\n      k: 0\n    }, 0, degToRads, this || _global);\n    (this || _global).g = new GradientProperty(elem, data.g, this || _global);\n    (this || _global).style = styleOb;\n    (this || _global).stops = [];\n    this.setGradientData(styleOb.pElem, data);\n    this.setGradientOpacity(data, styleOb);\n    (this || _global)._isAnimated = !!(this || _global)._isAnimated;\n  };\n\n  SVGGradientFillStyleData.prototype.setGradientData = function (pathElement, data) {\n    var gradientId = createElementID();\n    var gfill = createNS(data.t === 1 ? \"linearGradient\" : \"radialGradient\");\n    gfill.setAttribute(\"id\", gradientId);\n    gfill.setAttribute(\"spreadMethod\", \"pad\");\n    gfill.setAttribute(\"gradientUnits\", \"userSpaceOnUse\");\n    var stops = [];\n    var stop;\n    var j;\n    var jLen;\n    jLen = data.g.p * 4;\n\n    for (j = 0; j < jLen; j += 4) {\n      stop = createNS(\"stop\");\n      gfill.appendChild(stop);\n      stops.push(stop);\n    }\n\n    pathElement.setAttribute(data.ty === \"gf\" ? \"fill\" : \"stroke\", \"url(\" + locationHref + \"#\" + gradientId + \")\");\n    (this || _global).gf = gfill;\n    (this || _global).cst = stops;\n  };\n\n  SVGGradientFillStyleData.prototype.setGradientOpacity = function (data, styleOb) {\n    if ((this || _global).g._hasOpacity && !(this || _global).g._collapsable) {\n      var stop;\n      var j;\n      var jLen;\n      var mask = createNS(\"mask\");\n      var maskElement = createNS(\"path\");\n      mask.appendChild(maskElement);\n      var opacityId = createElementID();\n      var maskId = createElementID();\n      mask.setAttribute(\"id\", maskId);\n      var opFill = createNS(data.t === 1 ? \"linearGradient\" : \"radialGradient\");\n      opFill.setAttribute(\"id\", opacityId);\n      opFill.setAttribute(\"spreadMethod\", \"pad\");\n      opFill.setAttribute(\"gradientUnits\", \"userSpaceOnUse\");\n      jLen = data.g.k.k[0].s ? data.g.k.k[0].s.length : data.g.k.k.length;\n      var stops = (this || _global).stops;\n\n      for (j = data.g.p * 4; j < jLen; j += 2) {\n        stop = createNS(\"stop\");\n        stop.setAttribute(\"stop-color\", \"rgb(255,255,255)\");\n        opFill.appendChild(stop);\n        stops.push(stop);\n      }\n\n      maskElement.setAttribute(data.ty === \"gf\" ? \"fill\" : \"stroke\", \"url(\" + locationHref + \"#\" + opacityId + \")\");\n      (this || _global).of = opFill;\n      (this || _global).ms = mask;\n      (this || _global).ost = stops;\n      (this || _global).maskId = maskId;\n      styleOb.msElem = maskElement;\n    }\n  };\n\n  extendPrototype([DynamicPropertyContainer], SVGGradientFillStyleData);\n  /* global PropertyFactory, DashProperty, extendPrototype, SVGGradientFillStyleData, DynamicPropertyContainer */\n\n  function SVGGradientStrokeStyleData(elem, data, styleOb) {\n    this.initDynamicPropertyContainer(elem);\n    (this || _global).getValue = (this || _global).iterateDynamicProperties;\n    (this || _global).w = PropertyFactory.getProp(elem, data.w, 0, null, this || _global);\n    (this || _global).d = new DashProperty(elem, data.d || {}, \"svg\", this || _global);\n    this.initGradientData(elem, data, styleOb);\n    (this || _global)._isAnimated = !!(this || _global)._isAnimated;\n  }\n\n  extendPrototype([SVGGradientFillStyleData, DynamicPropertyContainer], SVGGradientStrokeStyleData);\n  /* global createNS */\n\n  /* exported ShapeGroupData */\n\n  function ShapeGroupData() {\n    (this || _global).it = [];\n    (this || _global).prevViewData = [];\n    (this || _global).gr = createNS(\"g\");\n  }\n  /* global Matrix, buildShapeString, bmFloor */\n\n  /* exported SVGElementsRenderer */\n\n\n  var SVGElementsRenderer = function () {\n    var _identityMatrix = new Matrix();\n\n    var _matrixHelper = new Matrix();\n\n    var ob = {\n      createRenderFunction: createRenderFunction\n    };\n\n    function createRenderFunction(data) {\n      switch (data.ty) {\n        case \"fl\":\n          return renderFill;\n\n        case \"gf\":\n          return renderGradient;\n\n        case \"gs\":\n          return renderGradientStroke;\n\n        case \"st\":\n          return renderStroke;\n\n        case \"sh\":\n        case \"el\":\n        case \"rc\":\n        case \"sr\":\n          return renderPath;\n\n        case \"tr\":\n          return renderContentTransform;\n\n        default:\n          return null;\n      }\n    }\n\n    function renderContentTransform(styleData, itemData, isFirstFrame) {\n      if (isFirstFrame || itemData.transform.op._mdf) {\n        itemData.transform.container.setAttribute(\"opacity\", itemData.transform.op.v);\n      }\n\n      if (isFirstFrame || itemData.transform.mProps._mdf) {\n        itemData.transform.container.setAttribute(\"transform\", itemData.transform.mProps.v.to2dCSS());\n      }\n    }\n\n    function renderPath(styleData, itemData, isFirstFrame) {\n      var j;\n      var jLen;\n      var pathStringTransformed;\n      var redraw;\n      var pathNodes;\n      var l;\n      var lLen = itemData.styles.length;\n      var lvl = itemData.lvl;\n      var paths;\n      var mat;\n      var props;\n      var iterations;\n      var k;\n\n      for (l = 0; l < lLen; l += 1) {\n        redraw = itemData.sh._mdf || isFirstFrame;\n\n        if (itemData.styles[l].lvl < lvl) {\n          mat = _matrixHelper.reset();\n          iterations = lvl - itemData.styles[l].lvl;\n          k = itemData.transformers.length - 1;\n\n          while (!redraw && iterations > 0) {\n            redraw = itemData.transformers[k].mProps._mdf || redraw;\n            iterations -= 1;\n            k -= 1;\n          }\n\n          if (redraw) {\n            iterations = lvl - itemData.styles[l].lvl;\n            k = itemData.transformers.length - 1;\n\n            while (iterations > 0) {\n              props = itemData.transformers[k].mProps.v.props;\n              mat.transform(props[0], props[1], props[2], props[3], props[4], props[5], props[6], props[7], props[8], props[9], props[10], props[11], props[12], props[13], props[14], props[15]);\n              iterations -= 1;\n              k -= 1;\n            }\n          }\n        } else {\n          mat = _identityMatrix;\n        }\n\n        paths = itemData.sh.paths;\n        jLen = paths._length;\n\n        if (redraw) {\n          pathStringTransformed = \"\";\n\n          for (j = 0; j < jLen; j += 1) {\n            pathNodes = paths.shapes[j];\n\n            if (pathNodes && pathNodes._length) {\n              pathStringTransformed += buildShapeString(pathNodes, pathNodes._length, pathNodes.c, mat);\n            }\n          }\n\n          itemData.caches[l] = pathStringTransformed;\n        } else {\n          pathStringTransformed = itemData.caches[l];\n        }\n\n        itemData.styles[l].d += styleData.hd === true ? \"\" : pathStringTransformed;\n        itemData.styles[l]._mdf = redraw || itemData.styles[l]._mdf;\n      }\n    }\n\n    function renderFill(styleData, itemData, isFirstFrame) {\n      var styleElem = itemData.style;\n\n      if (itemData.c._mdf || isFirstFrame) {\n        styleElem.pElem.setAttribute(\"fill\", \"rgb(\" + bmFloor(itemData.c.v[0]) + \",\" + bmFloor(itemData.c.v[1]) + \",\" + bmFloor(itemData.c.v[2]) + \")\");\n      }\n\n      if (itemData.o._mdf || isFirstFrame) {\n        styleElem.pElem.setAttribute(\"fill-opacity\", itemData.o.v);\n      }\n    }\n\n    function renderGradientStroke(styleData, itemData, isFirstFrame) {\n      renderGradient(styleData, itemData, isFirstFrame);\n      renderStroke(styleData, itemData, isFirstFrame);\n    }\n\n    function renderGradient(styleData, itemData, isFirstFrame) {\n      var gfill = itemData.gf;\n      var hasOpacity = itemData.g._hasOpacity;\n      var pt1 = itemData.s.v;\n      var pt2 = itemData.e.v;\n\n      if (itemData.o._mdf || isFirstFrame) {\n        var attr = styleData.ty === \"gf\" ? \"fill-opacity\" : \"stroke-opacity\";\n        itemData.style.pElem.setAttribute(attr, itemData.o.v);\n      }\n\n      if (itemData.s._mdf || isFirstFrame) {\n        var attr1 = styleData.t === 1 ? \"x1\" : \"cx\";\n        var attr2 = attr1 === \"x1\" ? \"y1\" : \"cy\";\n        gfill.setAttribute(attr1, pt1[0]);\n        gfill.setAttribute(attr2, pt1[1]);\n\n        if (hasOpacity && !itemData.g._collapsable) {\n          itemData.of.setAttribute(attr1, pt1[0]);\n          itemData.of.setAttribute(attr2, pt1[1]);\n        }\n      }\n\n      var stops;\n      var i;\n      var len;\n      var stop;\n\n      if (itemData.g._cmdf || isFirstFrame) {\n        stops = itemData.cst;\n        var cValues = itemData.g.c;\n        len = stops.length;\n\n        for (i = 0; i < len; i += 1) {\n          stop = stops[i];\n          stop.setAttribute(\"offset\", cValues[i * 4] + \"%\");\n          stop.setAttribute(\"stop-color\", \"rgb(\" + cValues[i * 4 + 1] + \",\" + cValues[i * 4 + 2] + \",\" + cValues[i * 4 + 3] + \")\");\n        }\n      }\n\n      if (hasOpacity && (itemData.g._omdf || isFirstFrame)) {\n        var oValues = itemData.g.o;\n\n        if (itemData.g._collapsable) {\n          stops = itemData.cst;\n        } else {\n          stops = itemData.ost;\n        }\n\n        len = stops.length;\n\n        for (i = 0; i < len; i += 1) {\n          stop = stops[i];\n\n          if (!itemData.g._collapsable) {\n            stop.setAttribute(\"offset\", oValues[i * 2] + \"%\");\n          }\n\n          stop.setAttribute(\"stop-opacity\", oValues[i * 2 + 1]);\n        }\n      }\n\n      if (styleData.t === 1) {\n        if (itemData.e._mdf || isFirstFrame) {\n          gfill.setAttribute(\"x2\", pt2[0]);\n          gfill.setAttribute(\"y2\", pt2[1]);\n\n          if (hasOpacity && !itemData.g._collapsable) {\n            itemData.of.setAttribute(\"x2\", pt2[0]);\n            itemData.of.setAttribute(\"y2\", pt2[1]);\n          }\n        }\n      } else {\n        var rad;\n\n        if (itemData.s._mdf || itemData.e._mdf || isFirstFrame) {\n          rad = Math.sqrt(Math.pow(pt1[0] - pt2[0], 2) + Math.pow(pt1[1] - pt2[1], 2));\n          gfill.setAttribute(\"r\", rad);\n\n          if (hasOpacity && !itemData.g._collapsable) {\n            itemData.of.setAttribute(\"r\", rad);\n          }\n        }\n\n        if (itemData.e._mdf || itemData.h._mdf || itemData.a._mdf || isFirstFrame) {\n          if (!rad) {\n            rad = Math.sqrt(Math.pow(pt1[0] - pt2[0], 2) + Math.pow(pt1[1] - pt2[1], 2));\n          }\n\n          var ang = Math.atan2(pt2[1] - pt1[1], pt2[0] - pt1[0]);\n          var percent = itemData.h.v;\n\n          if (percent >= 1) {\n            percent = 0.99;\n          } else if (percent <= -1) {\n            percent = -0.99;\n          }\n\n          var dist = rad * percent;\n          var x = Math.cos(ang + itemData.a.v) * dist + pt1[0];\n          var y = Math.sin(ang + itemData.a.v) * dist + pt1[1];\n          gfill.setAttribute(\"fx\", x);\n          gfill.setAttribute(\"fy\", y);\n\n          if (hasOpacity && !itemData.g._collapsable) {\n            itemData.of.setAttribute(\"fx\", x);\n            itemData.of.setAttribute(\"fy\", y);\n          }\n        } // gfill.setAttribute('fy','200');\n\n      }\n    }\n\n    function renderStroke(styleData, itemData, isFirstFrame) {\n      var styleElem = itemData.style;\n      var d = itemData.d;\n\n      if (d && (d._mdf || isFirstFrame) && d.dashStr) {\n        styleElem.pElem.setAttribute(\"stroke-dasharray\", d.dashStr);\n        styleElem.pElem.setAttribute(\"stroke-dashoffset\", d.dashoffset[0]);\n      }\n\n      if (itemData.c && (itemData.c._mdf || isFirstFrame)) {\n        styleElem.pElem.setAttribute(\"stroke\", \"rgb(\" + bmFloor(itemData.c.v[0]) + \",\" + bmFloor(itemData.c.v[1]) + \",\" + bmFloor(itemData.c.v[2]) + \")\");\n      }\n\n      if (itemData.o._mdf || isFirstFrame) {\n        styleElem.pElem.setAttribute(\"stroke-opacity\", itemData.o.v);\n      }\n\n      if (itemData.w._mdf || isFirstFrame) {\n        styleElem.pElem.setAttribute(\"stroke-width\", itemData.w.v);\n\n        if (styleElem.msElem) {\n          styleElem.msElem.setAttribute(\"stroke-width\", itemData.w.v);\n        }\n      }\n    }\n\n    return ob;\n  }();\n  /* global Matrix */\n\n\n  function ShapeTransformManager() {\n    (this || _global).sequences = {};\n    (this || _global).sequenceList = [];\n    (this || _global).transform_key_count = 0;\n  }\n\n  ShapeTransformManager.prototype = {\n    addTransformSequence: function (transforms) {\n      var i;\n      var len = transforms.length;\n      var key = \"_\";\n\n      for (i = 0; i < len; i += 1) {\n        key += transforms[i].transform.key + \"_\";\n      }\n\n      var sequence = (this || _global).sequences[key];\n\n      if (!sequence) {\n        sequence = {\n          transforms: [].concat(transforms),\n          finalTransform: new Matrix(),\n          _mdf: false\n        };\n        (this || _global).sequences[key] = sequence;\n\n        (this || _global).sequenceList.push(sequence);\n      }\n\n      return sequence;\n    },\n    processSequence: function (sequence, isFirstFrame) {\n      var i = 0;\n      var len = sequence.transforms.length;\n      var _mdf = isFirstFrame;\n\n      while (i < len && !isFirstFrame) {\n        if (sequence.transforms[i].transform.mProps._mdf) {\n          _mdf = true;\n          break;\n        }\n\n        i += 1;\n      }\n\n      if (_mdf) {\n        var props;\n        sequence.finalTransform.reset();\n\n        for (i = len - 1; i >= 0; i -= 1) {\n          props = sequence.transforms[i].transform.mProps.v.props;\n          sequence.finalTransform.transform(props[0], props[1], props[2], props[3], props[4], props[5], props[6], props[7], props[8], props[9], props[10], props[11], props[12], props[13], props[14], props[15]);\n        }\n      }\n\n      sequence._mdf = _mdf;\n    },\n    processSequences: function (isFirstFrame) {\n      var i;\n      var len = (this || _global).sequenceList.length;\n\n      for (i = 0; i < len; i += 1) {\n        this.processSequence((this || _global).sequenceList[i], isFirstFrame);\n      }\n    },\n    getNewKey: function () {\n      (this || _global).transform_key_count += 1;\n      return \"_\" + (this || _global).transform_key_count;\n    }\n  };\n  /* global ShapePropertyFactory, SVGShapeData */\n\n  function CVShapeData(element, data, styles, transformsManager) {\n    (this || _global).styledShapes = [];\n    (this || _global).tr = [0, 0, 0, 0, 0, 0];\n    var ty = 4;\n\n    if (data.ty === \"rc\") {\n      ty = 5;\n    } else if (data.ty === \"el\") {\n      ty = 6;\n    } else if (data.ty === \"sr\") {\n      ty = 7;\n    }\n\n    (this || _global).sh = ShapePropertyFactory.getShapeProp(element, data, ty, element);\n    var i;\n    var len = styles.length;\n    var styledShape;\n\n    for (i = 0; i < len; i += 1) {\n      if (!styles[i].closed) {\n        styledShape = {\n          transforms: transformsManager.addTransformSequence(styles[i].transforms),\n          trNodes: []\n        };\n\n        (this || _global).styledShapes.push(styledShape);\n\n        styles[i].elements.push(styledShape);\n      }\n    }\n  }\n\n  CVShapeData.prototype.setAsAnimated = SVGShapeData.prototype.setAsAnimated;\n  /* global LayerExpressionInterface, EffectsExpressionInterface, CompExpressionInterface, ShapeExpressionInterface,\r\n  TextExpressionInterface, getBlendMode,createElementID, EffectsManager */\n\n  function BaseElement() {}\n\n  BaseElement.prototype = {\n    checkMasks: function () {\n      if (!(this || _global).data.hasMask) {\n        return false;\n      }\n\n      var i = 0;\n      var len = (this || _global).data.masksProperties.length;\n\n      while (i < len) {\n        if ((this || _global).data.masksProperties[i].mode !== \"n\" && (this || _global).data.masksProperties[i].cl !== false) {\n          return true;\n        }\n\n        i += 1;\n      }\n\n      return false;\n    },\n    initExpressions: function () {\n      (this || _global).layerInterface = LayerExpressionInterface(this || _global);\n\n      if ((this || _global).data.hasMask && (this || _global).maskManager) {\n        (this || _global).layerInterface.registerMaskInterface((this || _global).maskManager);\n      }\n\n      var effectsInterface = EffectsExpressionInterface.createEffectsInterface(this || _global, (this || _global).layerInterface);\n\n      (this || _global).layerInterface.registerEffectsInterface(effectsInterface);\n\n      if ((this || _global).data.ty === 0 || (this || _global).data.xt) {\n        (this || _global).compInterface = CompExpressionInterface(this || _global);\n      } else if ((this || _global).data.ty === 4) {\n        (this || _global).layerInterface.shapeInterface = ShapeExpressionInterface((this || _global).shapesData, (this || _global).itemsData, (this || _global).layerInterface);\n        (this || _global).layerInterface.content = (this || _global).layerInterface.shapeInterface;\n      } else if ((this || _global).data.ty === 5) {\n        (this || _global).layerInterface.textInterface = TextExpressionInterface(this || _global);\n        (this || _global).layerInterface.text = (this || _global).layerInterface.textInterface;\n      }\n    },\n    setBlendMode: function () {\n      var blendModeValue = getBlendMode((this || _global).data.bm);\n      var elem = (this || _global).baseElement || (this || _global).layerElement;\n      elem.style[\"mix-blend-mode\"] = blendModeValue;\n    },\n    initBaseData: function (data, globalData, comp) {\n      (this || _global).globalData = globalData;\n      (this || _global).comp = comp;\n      (this || _global).data = data;\n      (this || _global).layerId = createElementID(); // Stretch factor for old animations missing this property.\n\n      if (!(this || _global).data.sr) {\n        (this || _global).data.sr = 1;\n      } // effects manager\n\n\n      (this || _global).effectsManager = new EffectsManager((this || _global).data, this || _global, (this || _global).dynamicProperties);\n    },\n    getType: function () {\n      return (this || _global).type;\n    },\n    sourceRectAtTime: function () {}\n  };\n  /* global extendPrototype, BaseElement, TransformElement, HierarchyElement, FrameElement */\n\n  function NullElement(data, globalData, comp) {\n    this.initFrame();\n    this.initBaseData(data, globalData, comp);\n    this.initFrame();\n    this.initTransform(data, globalData, comp);\n    this.initHierarchy();\n  }\n\n  NullElement.prototype.prepareFrame = function (num) {\n    this.prepareProperties(num, true);\n  };\n\n  NullElement.prototype.renderFrame = function () {};\n\n  NullElement.prototype.getBaseElement = function () {\n    return null;\n  };\n\n  NullElement.prototype.destroy = function () {};\n\n  NullElement.prototype.sourceRectAtTime = function () {};\n\n  NullElement.prototype.hide = function () {};\n\n  extendPrototype([BaseElement, TransformElement, HierarchyElement, FrameElement], NullElement);\n  /* global filtersFactory, featureSupport, filtersFactory, createElementID, createNS, MaskElement, SVGEffects, locationHref */\n\n  function SVGBaseElement() {}\n\n  SVGBaseElement.prototype = {\n    initRendererElement: function () {\n      (this || _global).layerElement = createNS(\"g\");\n    },\n    createContainerElements: function () {\n      (this || _global).matteElement = createNS(\"g\");\n      (this || _global).transformedElement = (this || _global).layerElement;\n      (this || _global).maskedElement = (this || _global).layerElement;\n      (this || _global)._sizeChanged = false;\n      var layerElementParent = null; // If this layer acts as a mask for the following layer\n\n      var filId;\n      var fil;\n      var gg;\n\n      if ((this || _global).data.td) {\n        if ((this || _global).data.td == 3 || (this || _global).data.td == 1) {\n          // eslint-disable-line eqeqeq\n          var masker = createNS(\"mask\");\n          masker.setAttribute(\"id\", (this || _global).layerId);\n          masker.setAttribute(\"mask-type\", (this || _global).data.td == 3 ? \"luminance\" : \"alpha\"); // eslint-disable-line eqeqeq\n\n          masker.appendChild((this || _global).layerElement);\n          layerElementParent = masker;\n\n          (this || _global).globalData.defs.appendChild(masker); // This is only for IE and Edge when mask if of type alpha\n\n\n          if (!featureSupport.maskType && (this || _global).data.td == 1) {\n            // eslint-disable-line eqeqeq\n            masker.setAttribute(\"mask-type\", \"luminance\");\n            filId = createElementID();\n            fil = filtersFactory.createFilter(filId);\n\n            (this || _global).globalData.defs.appendChild(fil);\n\n            fil.appendChild(filtersFactory.createAlphaToLuminanceFilter());\n            gg = createNS(\"g\");\n            gg.appendChild((this || _global).layerElement);\n            layerElementParent = gg;\n            masker.appendChild(gg);\n            gg.setAttribute(\"filter\", \"url(\" + locationHref + \"#\" + filId + \")\");\n          }\n        } else if ((this || _global).data.td == 2) {\n          // eslint-disable-line eqeqeq\n          var maskGroup = createNS(\"mask\");\n          maskGroup.setAttribute(\"id\", (this || _global).layerId);\n          maskGroup.setAttribute(\"mask-type\", \"alpha\");\n          var maskGrouper = createNS(\"g\");\n          maskGroup.appendChild(maskGrouper);\n          filId = createElementID();\n          fil = filtersFactory.createFilter(filId); /// /\n          // This solution doesn't work on Android when meta tag with viewport attribute is set\n\n          /* var feColorMatrix = createNS('feColorMatrix');\r\n                  feColorMatrix.setAttribute('type', 'matrix');\r\n                  feColorMatrix.setAttribute('color-interpolation-filters', 'sRGB');\r\n                  feColorMatrix.setAttribute('values','1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 -1 1');\r\n                  fil.appendChild(feColorMatrix); */\n          /// /\n\n          var feCTr = createNS(\"feComponentTransfer\");\n          feCTr.setAttribute(\"in\", \"SourceGraphic\");\n          fil.appendChild(feCTr);\n          var feFunc = createNS(\"feFuncA\");\n          feFunc.setAttribute(\"type\", \"table\");\n          feFunc.setAttribute(\"tableValues\", \"1.0 0.0\");\n          feCTr.appendChild(feFunc); /// /\n\n          (this || _global).globalData.defs.appendChild(fil);\n\n          var alphaRect = createNS(\"rect\");\n          alphaRect.setAttribute(\"width\", (this || _global).comp.data.w);\n          alphaRect.setAttribute(\"height\", (this || _global).comp.data.h);\n          alphaRect.setAttribute(\"x\", \"0\");\n          alphaRect.setAttribute(\"y\", \"0\");\n          alphaRect.setAttribute(\"fill\", \"#ffffff\");\n          alphaRect.setAttribute(\"opacity\", \"0\");\n          maskGrouper.setAttribute(\"filter\", \"url(\" + locationHref + \"#\" + filId + \")\");\n          maskGrouper.appendChild(alphaRect);\n          maskGrouper.appendChild((this || _global).layerElement);\n          layerElementParent = maskGrouper;\n\n          if (!featureSupport.maskType) {\n            maskGroup.setAttribute(\"mask-type\", \"luminance\");\n            fil.appendChild(filtersFactory.createAlphaToLuminanceFilter());\n            gg = createNS(\"g\");\n            maskGrouper.appendChild(alphaRect);\n            gg.appendChild((this || _global).layerElement);\n            layerElementParent = gg;\n            maskGrouper.appendChild(gg);\n          }\n\n          (this || _global).globalData.defs.appendChild(maskGroup);\n        }\n      } else if ((this || _global).data.tt) {\n        (this || _global).matteElement.appendChild((this || _global).layerElement);\n\n        layerElementParent = (this || _global).matteElement;\n        (this || _global).baseElement = (this || _global).matteElement;\n      } else {\n        (this || _global).baseElement = (this || _global).layerElement;\n      }\n\n      if ((this || _global).data.ln) {\n        (this || _global).layerElement.setAttribute(\"id\", (this || _global).data.ln);\n      }\n\n      if ((this || _global).data.cl) {\n        (this || _global).layerElement.setAttribute(\"class\", (this || _global).data.cl);\n      } // Clipping compositions to hide content that exceeds boundaries. If collapsed transformations is on, component should not be clipped\n\n\n      if ((this || _global).data.ty === 0 && !(this || _global).data.hd) {\n        var cp = createNS(\"clipPath\");\n        var pt = createNS(\"path\");\n        pt.setAttribute(\"d\", \"M0,0 L\" + (this || _global).data.w + \",0 L\" + (this || _global).data.w + \",\" + (this || _global).data.h + \" L0,\" + (this || _global).data.h + \"z\");\n        var clipId = createElementID();\n        cp.setAttribute(\"id\", clipId);\n        cp.appendChild(pt);\n\n        (this || _global).globalData.defs.appendChild(cp);\n\n        if (this.checkMasks()) {\n          var cpGroup = createNS(\"g\");\n          cpGroup.setAttribute(\"clip-path\", \"url(\" + locationHref + \"#\" + clipId + \")\");\n          cpGroup.appendChild((this || _global).layerElement);\n          (this || _global).transformedElement = cpGroup;\n\n          if (layerElementParent) {\n            layerElementParent.appendChild((this || _global).transformedElement);\n          } else {\n            (this || _global).baseElement = (this || _global).transformedElement;\n          }\n        } else {\n          (this || _global).layerElement.setAttribute(\"clip-path\", \"url(\" + locationHref + \"#\" + clipId + \")\");\n        }\n      }\n\n      if ((this || _global).data.bm !== 0) {\n        this.setBlendMode();\n      }\n    },\n    renderElement: function () {\n      if ((this || _global).finalTransform._matMdf) {\n        (this || _global).transformedElement.setAttribute(\"transform\", (this || _global).finalTransform.mat.to2dCSS());\n      }\n\n      if ((this || _global).finalTransform._opMdf) {\n        (this || _global).transformedElement.setAttribute(\"opacity\", (this || _global).finalTransform.mProp.o.v);\n      }\n    },\n    destroyBaseElement: function () {\n      (this || _global).layerElement = null;\n      (this || _global).matteElement = null;\n\n      (this || _global).maskManager.destroy();\n    },\n    getBaseElement: function () {\n      if ((this || _global).data.hd) {\n        return null;\n      }\n\n      return (this || _global).baseElement;\n    },\n    createRenderableComponents: function () {\n      (this || _global).maskManager = new MaskElement((this || _global).data, this || _global, (this || _global).globalData);\n      (this || _global).renderableEffectsManager = new SVGEffects(this || _global);\n    },\n    setMatte: function (id) {\n      if (!(this || _global).matteElement) {\n        return;\n      }\n\n      (this || _global).matteElement.setAttribute(\"mask\", \"url(\" + locationHref + \"#\" + id + \")\");\n    }\n  };\n  /* global ProcessedElement */\n\n  function IShapeElement() {}\n\n  IShapeElement.prototype = {\n    addShapeToModifiers: function (data) {\n      var i;\n      var len = (this || _global).shapeModifiers.length;\n\n      for (i = 0; i < len; i += 1) {\n        (this || _global).shapeModifiers[i].addShape(data);\n      }\n    },\n    isShapeInAnimatedModifiers: function (data) {\n      var i = 0;\n      var len = (this || _global).shapeModifiers.length;\n\n      while (i < len) {\n        if ((this || _global).shapeModifiers[i].isAnimatedWithShape(data)) {\n          return true;\n        }\n      }\n\n      return false;\n    },\n    renderModifiers: function () {\n      if (!(this || _global).shapeModifiers.length) {\n        return;\n      }\n\n      var i;\n      var len = (this || _global).shapes.length;\n\n      for (i = 0; i < len; i += 1) {\n        (this || _global).shapes[i].sh.reset();\n      }\n\n      len = (this || _global).shapeModifiers.length;\n      var shouldBreakProcess;\n\n      for (i = len - 1; i >= 0; i -= 1) {\n        shouldBreakProcess = (this || _global).shapeModifiers[i].processShapes((this || _global)._isFirstFrame); // workaround to fix cases where a repeater resets the shape so the following processes get called twice\n        // TODO: find a better solution for this\n\n        if (shouldBreakProcess) {\n          break;\n        }\n      }\n    },\n    lcEnum: {\n      1: \"butt\",\n      2: \"round\",\n      3: \"square\"\n    },\n    ljEnum: {\n      1: \"miter\",\n      2: \"round\",\n      3: \"bevel\"\n    },\n    searchProcessedElement: function (elem) {\n      var elements = (this || _global).processedElements;\n      var i = 0;\n      var len = elements.length;\n\n      while (i < len) {\n        if (elements[i].elem === elem) {\n          return elements[i].pos;\n        }\n\n        i += 1;\n      }\n\n      return 0;\n    },\n    addProcessedElement: function (elem, pos) {\n      var elements = (this || _global).processedElements;\n      var i = elements.length;\n\n      while (i) {\n        i -= 1;\n\n        if (elements[i].elem === elem) {\n          elements[i].pos = pos;\n          return;\n        }\n      }\n\n      elements.push(new ProcessedElement(elem, pos));\n    },\n    prepareFrame: function (num) {\n      this.prepareRenderableFrame(num);\n      this.prepareProperties(num, (this || _global).isInRange);\n    }\n  };\n  /* global TextProperty, TextAnimatorProperty, buildShapeString, LetterProps */\n\n  function ITextElement() {}\n\n  ITextElement.prototype.initElement = function (data, globalData, comp) {\n    (this || _global).lettersChangedFlag = true;\n    this.initFrame();\n    this.initBaseData(data, globalData, comp);\n    (this || _global).textProperty = new TextProperty(this || _global, data.t, (this || _global).dynamicProperties);\n    (this || _global).textAnimator = new TextAnimatorProperty(data.t, (this || _global).renderType, this || _global);\n    this.initTransform(data, globalData, comp);\n    this.initHierarchy();\n    this.initRenderable();\n    this.initRendererElement();\n    this.createContainerElements();\n    this.createRenderableComponents();\n    this.createContent();\n    this.hide();\n\n    (this || _global).textAnimator.searchProperties((this || _global).dynamicProperties);\n  };\n\n  ITextElement.prototype.prepareFrame = function (num) {\n    (this || _global)._mdf = false;\n    this.prepareRenderableFrame(num);\n    this.prepareProperties(num, (this || _global).isInRange);\n\n    if ((this || _global).textProperty._mdf || (this || _global).textProperty._isFirstFrame) {\n      this.buildNewText();\n      (this || _global).textProperty._isFirstFrame = false;\n      (this || _global).textProperty._mdf = false;\n    }\n  };\n\n  ITextElement.prototype.createPathShape = function (matrixHelper, shapes) {\n    var j;\n    var jLen = shapes.length;\n    var pathNodes;\n    var shapeStr = \"\";\n\n    for (j = 0; j < jLen; j += 1) {\n      pathNodes = shapes[j].ks.k;\n      shapeStr += buildShapeString(pathNodes, pathNodes.i.length, true, matrixHelper);\n    }\n\n    return shapeStr;\n  };\n\n  ITextElement.prototype.updateDocumentData = function (newData, index) {\n    (this || _global).textProperty.updateDocumentData(newData, index);\n  };\n\n  ITextElement.prototype.canResizeFont = function (_canResize) {\n    (this || _global).textProperty.canResizeFont(_canResize);\n  };\n\n  ITextElement.prototype.setMinimumFontSize = function (_fontSize) {\n    (this || _global).textProperty.setMinimumFontSize(_fontSize);\n  };\n\n  ITextElement.prototype.applyTextPropertiesToMatrix = function (documentData, matrixHelper, lineNumber, xPos, yPos) {\n    if (documentData.ps) {\n      matrixHelper.translate(documentData.ps[0], documentData.ps[1] + documentData.ascent, 0);\n    }\n\n    matrixHelper.translate(0, -documentData.ls, 0);\n\n    switch (documentData.j) {\n      case 1:\n        matrixHelper.translate(documentData.justifyOffset + (documentData.boxWidth - documentData.lineWidths[lineNumber]), 0, 0);\n        break;\n\n      case 2:\n        matrixHelper.translate(documentData.justifyOffset + (documentData.boxWidth - documentData.lineWidths[lineNumber]) / 2, 0, 0);\n        break;\n\n      default:\n        break;\n    }\n\n    matrixHelper.translate(xPos, yPos, 0);\n  };\n\n  ITextElement.prototype.buildColor = function (colorData) {\n    return \"rgb(\" + Math.round(colorData[0] * 255) + \",\" + Math.round(colorData[1] * 255) + \",\" + Math.round(colorData[2] * 255) + \")\";\n  };\n\n  ITextElement.prototype.emptyProp = new LetterProps();\n\n  ITextElement.prototype.destroy = function () {};\n  /* global extendPrototype, BaseElement, TransformElement, HierarchyElement, FrameElement, RenderableDOMElement */\n\n\n  function ICompElement() {}\n\n  extendPrototype([BaseElement, TransformElement, HierarchyElement, FrameElement, RenderableDOMElement], ICompElement);\n\n  ICompElement.prototype.initElement = function (data, globalData, comp) {\n    this.initFrame();\n    this.initBaseData(data, globalData, comp);\n    this.initTransform(data, globalData, comp);\n    this.initRenderable();\n    this.initHierarchy();\n    this.initRendererElement();\n    this.createContainerElements();\n    this.createRenderableComponents();\n\n    if ((this || _global).data.xt || !globalData.progressiveLoad) {\n      this.buildAllItems();\n    }\n\n    this.hide();\n  };\n  /* ICompElement.prototype.hide = function(){\r\n      if(!this.hidden){\r\n          this.hideElement();\r\n          var i,len = this.elements.length;\r\n          for( i = 0; i < len; i+=1 ){\r\n              if(this.elements[i]){\r\n                  this.elements[i].hide();\r\n              }\r\n          }\r\n      }\r\n  }; */\n\n\n  ICompElement.prototype.prepareFrame = function (num) {\n    (this || _global)._mdf = false;\n    this.prepareRenderableFrame(num);\n    this.prepareProperties(num, (this || _global).isInRange);\n\n    if (!(this || _global).isInRange && !(this || _global).data.xt) {\n      return;\n    }\n\n    if (!(this || _global).tm._placeholder) {\n      var timeRemapped = (this || _global).tm.v;\n\n      if (timeRemapped === (this || _global).data.op) {\n        timeRemapped = (this || _global).data.op - 1;\n      }\n\n      (this || _global).renderedFrame = timeRemapped;\n    } else {\n      (this || _global).renderedFrame = num / (this || _global).data.sr;\n    }\n\n    var i;\n    var len = (this || _global).elements.length;\n\n    if (!(this || _global).completeLayers) {\n      this.checkLayers((this || _global).renderedFrame);\n    } // This iteration needs to be backwards because of how expressions connect between each other\n\n\n    for (i = len - 1; i >= 0; i -= 1) {\n      if ((this || _global).completeLayers || (this || _global).elements[i]) {\n        (this || _global).elements[i].prepareFrame((this || _global).renderedFrame - (this || _global).layers[i].st);\n\n        if ((this || _global).elements[i]._mdf) {\n          (this || _global)._mdf = true;\n        }\n      }\n    }\n  };\n\n  ICompElement.prototype.renderInnerContent = function () {\n    var i;\n    var len = (this || _global).layers.length;\n\n    for (i = 0; i < len; i += 1) {\n      if ((this || _global).completeLayers || (this || _global).elements[i]) {\n        (this || _global).elements[i].renderFrame();\n      }\n    }\n  };\n\n  ICompElement.prototype.setElements = function (elems) {\n    (this || _global).elements = elems;\n  };\n\n  ICompElement.prototype.getElements = function () {\n    return (this || _global).elements;\n  };\n\n  ICompElement.prototype.destroyElements = function () {\n    var i;\n    var len = (this || _global).layers.length;\n\n    for (i = 0; i < len; i += 1) {\n      if ((this || _global).elements[i]) {\n        (this || _global).elements[i].destroy();\n      }\n    }\n  };\n\n  ICompElement.prototype.destroy = function () {\n    this.destroyElements();\n    this.destroyBaseElement();\n  };\n  /* global extendPrototype, BaseElement, TransformElement, SVGBaseElement, HierarchyElement, FrameElement, RenderableDOMElement, createNS */\n\n\n  function IImageElement(data, globalData, comp) {\n    (this || _global).assetData = globalData.getAssetData(data.refId);\n    this.initElement(data, globalData, comp);\n    (this || _global).sourceRect = {\n      top: 0,\n      left: 0,\n      width: (this || _global).assetData.w,\n      height: (this || _global).assetData.h\n    };\n  }\n\n  extendPrototype([BaseElement, TransformElement, SVGBaseElement, HierarchyElement, FrameElement, RenderableDOMElement], IImageElement);\n\n  IImageElement.prototype.createContent = function () {\n    var assetPath = (this || _global).globalData.getAssetsPath((this || _global).assetData);\n\n    (this || _global).innerElem = createNS(\"image\");\n\n    (this || _global).innerElem.setAttribute(\"width\", (this || _global).assetData.w + \"px\");\n\n    (this || _global).innerElem.setAttribute(\"height\", (this || _global).assetData.h + \"px\");\n\n    (this || _global).innerElem.setAttribute(\"preserveAspectRatio\", (this || _global).assetData.pr || (this || _global).globalData.renderConfig.imagePreserveAspectRatio);\n\n    (this || _global).innerElem.setAttributeNS(\"http://www.w3.org/1999/xlink\", \"href\", assetPath);\n\n    (this || _global).layerElement.appendChild((this || _global).innerElem);\n  };\n\n  IImageElement.prototype.sourceRectAtTime = function () {\n    return (this || _global).sourceRect;\n  };\n  /* global extendPrototype, IImageElement, createNS */\n\n\n  function ISolidElement(data, globalData, comp) {\n    this.initElement(data, globalData, comp);\n  }\n\n  extendPrototype([IImageElement], ISolidElement);\n\n  ISolidElement.prototype.createContent = function () {\n    var rect = createNS(\"rect\"); /// /rect.style.width = this.data.sw;\n    /// /rect.style.height = this.data.sh;\n    /// /rect.style.fill = this.data.sc;\n\n    rect.setAttribute(\"width\", (this || _global).data.sw);\n    rect.setAttribute(\"height\", (this || _global).data.sh);\n    rect.setAttribute(\"fill\", (this || _global).data.sc);\n\n    (this || _global).layerElement.appendChild(rect);\n  };\n  /* global PropertyFactory, extendPrototype, RenderableElement, BaseElement, FrameElement */\n\n\n  function AudioElement(data, globalData, comp) {\n    this.initFrame();\n    this.initRenderable();\n    (this || _global).assetData = globalData.getAssetData(data.refId);\n    this.initBaseData(data, globalData, comp);\n    (this || _global)._isPlaying = false;\n    (this || _global)._canPlay = false;\n\n    var assetPath = (this || _global).globalData.getAssetsPath((this || _global).assetData);\n\n    (this || _global).audio = (this || _global).globalData.audioController.createAudio(assetPath);\n    (this || _global)._currentTime = 0;\n\n    (this || _global).globalData.audioController.addAudio(this || _global);\n\n    (this || _global).tm = data.tm ? PropertyFactory.getProp(this || _global, data.tm, 0, globalData.frameRate, this || _global) : {\n      _placeholder: true\n    };\n  }\n\n  AudioElement.prototype.prepareFrame = function (num) {\n    this.prepareRenderableFrame(num, true);\n    this.prepareProperties(num, true);\n\n    if (!(this || _global).tm._placeholder) {\n      var timeRemapped = (this || _global).tm.v;\n      (this || _global)._currentTime = timeRemapped;\n    } else {\n      (this || _global)._currentTime = num / (this || _global).data.sr;\n    }\n  };\n\n  extendPrototype([RenderableElement, BaseElement, FrameElement], AudioElement);\n\n  AudioElement.prototype.renderFrame = function () {\n    if ((this || _global).isInRange && (this || _global)._canPlay) {\n      if (!(this || _global)._isPlaying) {\n        (this || _global).audio.play();\n\n        (this || _global).audio.seek((this || _global)._currentTime / (this || _global).globalData.frameRate);\n\n        (this || _global)._isPlaying = true;\n      } else if (!(this || _global).audio.playing() || Math.abs((this || _global)._currentTime / (this || _global).globalData.frameRate - (this || _global).audio.seek()) > 0.1) {\n        (this || _global).audio.seek((this || _global)._currentTime / (this || _global).globalData.frameRate);\n      }\n    }\n  };\n\n  AudioElement.prototype.show = function () {// this.audio.play()\n  };\n\n  AudioElement.prototype.hide = function () {\n    (this || _global).audio.pause();\n\n    (this || _global)._isPlaying = false;\n  };\n\n  AudioElement.prototype.pause = function () {\n    (this || _global).audio.pause();\n\n    (this || _global)._isPlaying = false;\n    (this || _global)._canPlay = false;\n  };\n\n  AudioElement.prototype.resume = function () {\n    (this || _global)._canPlay = true;\n  };\n\n  AudioElement.prototype.setRate = function (rateValue) {\n    (this || _global).audio.rate(rateValue);\n  };\n\n  AudioElement.prototype.volume = function (volumeValue) {\n    (this || _global).audio.volume(volumeValue);\n  };\n\n  AudioElement.prototype.getBaseElement = function () {\n    return null;\n  };\n\n  AudioElement.prototype.destroy = function () {};\n\n  AudioElement.prototype.sourceRectAtTime = function () {};\n\n  AudioElement.prototype.initExpressions = function () {};\n  /* global extendPrototype, RenderableElement, BaseElement, FrameElement, FootageInterface */\n\n\n  function FootageElement(data, globalData, comp) {\n    this.initFrame();\n    this.initRenderable();\n    (this || _global).assetData = globalData.getAssetData(data.refId);\n    (this || _global).footageData = globalData.imageLoader.getAsset((this || _global).assetData);\n    this.initBaseData(data, globalData, comp);\n  }\n\n  FootageElement.prototype.prepareFrame = function () {};\n\n  extendPrototype([RenderableElement, BaseElement, FrameElement], FootageElement);\n\n  FootageElement.prototype.getBaseElement = function () {\n    return null;\n  };\n\n  FootageElement.prototype.renderFrame = function () {};\n\n  FootageElement.prototype.destroy = function () {};\n\n  FootageElement.prototype.initExpressions = function () {\n    (this || _global).layerInterface = FootageInterface(this || _global);\n  };\n\n  FootageElement.prototype.getFootageData = function () {\n    return (this || _global).footageData;\n  };\n  /* global createSizedArray, PropertyFactory, extendPrototype, SVGRenderer, ICompElement, SVGBaseElement */\n\n\n  function SVGCompElement(data, globalData, comp) {\n    (this || _global).layers = data.layers;\n    (this || _global).supports3d = true;\n    (this || _global).completeLayers = false;\n    (this || _global).pendingElements = [];\n    (this || _global).elements = (this || _global).layers ? createSizedArray((this || _global).layers.length) : []; // this.layerElement = createNS('g');\n\n    this.initElement(data, globalData, comp);\n    (this || _global).tm = data.tm ? PropertyFactory.getProp(this || _global, data.tm, 0, globalData.frameRate, this || _global) : {\n      _placeholder: true\n    };\n  }\n\n  extendPrototype([SVGRenderer, ICompElement, SVGBaseElement], SVGCompElement);\n  /* global extendPrototype, BaseElement, TransformElement, SVGBaseElement, HierarchyElement, FrameElement,\r\n  RenderableDOMElement, ITextElement, createSizedArray, createNS */\n\n  function SVGTextLottieElement(data, globalData, comp) {\n    (this || _global).textSpans = [];\n    (this || _global).renderType = \"svg\";\n    this.initElement(data, globalData, comp);\n  }\n\n  extendPrototype([BaseElement, TransformElement, SVGBaseElement, HierarchyElement, FrameElement, RenderableDOMElement, ITextElement], SVGTextLottieElement);\n\n  SVGTextLottieElement.prototype.createContent = function () {\n    if ((this || _global).data.singleShape && !(this || _global).globalData.fontManager.chars) {\n      (this || _global).textContainer = createNS(\"text\");\n    }\n  };\n\n  SVGTextLottieElement.prototype.buildTextContents = function (textArray) {\n    var i = 0;\n    var len = textArray.length;\n    var textContents = [];\n    var currentTextContent = \"\";\n\n    while (i < len) {\n      if (textArray[i] === String.fromCharCode(13) || textArray[i] === String.fromCharCode(3)) {\n        textContents.push(currentTextContent);\n        currentTextContent = \"\";\n      } else {\n        currentTextContent += textArray[i];\n      }\n\n      i += 1;\n    }\n\n    textContents.push(currentTextContent);\n    return textContents;\n  };\n\n  SVGTextLottieElement.prototype.buildNewText = function () {\n    var i;\n    var len;\n    var documentData = (this || _global).textProperty.currentData;\n    (this || _global).renderedLetters = createSizedArray(documentData ? documentData.l.length : 0);\n\n    if (documentData.fc) {\n      (this || _global).layerElement.setAttribute(\"fill\", this.buildColor(documentData.fc));\n    } else {\n      (this || _global).layerElement.setAttribute(\"fill\", \"rgba(0,0,0,0)\");\n    }\n\n    if (documentData.sc) {\n      (this || _global).layerElement.setAttribute(\"stroke\", this.buildColor(documentData.sc));\n\n      (this || _global).layerElement.setAttribute(\"stroke-width\", documentData.sw);\n    }\n\n    (this || _global).layerElement.setAttribute(\"font-size\", documentData.finalSize);\n\n    var fontData = (this || _global).globalData.fontManager.getFontByName(documentData.f);\n\n    if (fontData.fClass) {\n      (this || _global).layerElement.setAttribute(\"class\", fontData.fClass);\n    } else {\n      (this || _global).layerElement.setAttribute(\"font-family\", fontData.fFamily);\n\n      var fWeight = documentData.fWeight;\n      var fStyle = documentData.fStyle;\n\n      (this || _global).layerElement.setAttribute(\"font-style\", fStyle);\n\n      (this || _global).layerElement.setAttribute(\"font-weight\", fWeight);\n    }\n\n    (this || _global).layerElement.setAttribute(\"aria-label\", documentData.t);\n\n    var letters = documentData.l || [];\n    var usesGlyphs = !!(this || _global).globalData.fontManager.chars;\n    len = letters.length;\n    var tSpan;\n    var matrixHelper = (this || _global).mHelper;\n    var shapes;\n    var shapeStr = \"\";\n    var singleShape = (this || _global).data.singleShape;\n    var xPos = 0;\n    var yPos = 0;\n    var firstLine = true;\n    var trackingOffset = documentData.tr * 0.001 * documentData.finalSize;\n\n    if (singleShape && !usesGlyphs && !documentData.sz) {\n      var tElement = (this || _global).textContainer;\n      var justify = \"start\";\n\n      switch (documentData.j) {\n        case 1:\n          justify = \"end\";\n          break;\n\n        case 2:\n          justify = \"middle\";\n          break;\n\n        default:\n          justify = \"start\";\n          break;\n      }\n\n      tElement.setAttribute(\"text-anchor\", justify);\n      tElement.setAttribute(\"letter-spacing\", trackingOffset);\n      var textContent = this.buildTextContents(documentData.finalText);\n      len = textContent.length;\n      yPos = documentData.ps ? documentData.ps[1] + documentData.ascent : 0;\n\n      for (i = 0; i < len; i += 1) {\n        tSpan = (this || _global).textSpans[i] || createNS(\"tspan\");\n        tSpan.textContent = textContent[i];\n        tSpan.setAttribute(\"x\", 0);\n        tSpan.setAttribute(\"y\", yPos);\n        tSpan.style.display = \"inherit\";\n        tElement.appendChild(tSpan);\n        (this || _global).textSpans[i] = tSpan;\n        yPos += documentData.finalLineHeight;\n      }\n\n      (this || _global).layerElement.appendChild(tElement);\n    } else {\n      var cachedSpansLength = (this || _global).textSpans.length;\n      var shapeData;\n      var charData;\n\n      for (i = 0; i < len; i += 1) {\n        if (!usesGlyphs || !singleShape || i === 0) {\n          tSpan = cachedSpansLength > i ? (this || _global).textSpans[i] : createNS(usesGlyphs ? \"path\" : \"text\");\n\n          if (cachedSpansLength <= i) {\n            tSpan.setAttribute(\"stroke-linecap\", \"butt\");\n            tSpan.setAttribute(\"stroke-linejoin\", \"round\");\n            tSpan.setAttribute(\"stroke-miterlimit\", \"4\");\n            (this || _global).textSpans[i] = tSpan;\n\n            (this || _global).layerElement.appendChild(tSpan);\n          }\n\n          tSpan.style.display = \"inherit\";\n        }\n\n        matrixHelper.reset();\n        matrixHelper.scale(documentData.finalSize / 100, documentData.finalSize / 100);\n\n        if (singleShape) {\n          if (letters[i].n) {\n            xPos = -trackingOffset;\n            yPos += documentData.yOffset;\n            yPos += firstLine ? 1 : 0;\n            firstLine = false;\n          }\n\n          this.applyTextPropertiesToMatrix(documentData, matrixHelper, letters[i].line, xPos, yPos);\n          xPos += letters[i].l || 0; // xPos += letters[i].val === ' ' ? 0 : trackingOffset;\n\n          xPos += trackingOffset;\n        }\n\n        if (usesGlyphs) {\n          charData = (this || _global).globalData.fontManager.getCharData(documentData.finalText[i], fontData.fStyle, (this || _global).globalData.fontManager.getFontByName(documentData.f).fFamily);\n          shapeData = charData && charData.data || {};\n          shapes = shapeData.shapes ? shapeData.shapes[0].it : [];\n\n          if (!singleShape) {\n            tSpan.setAttribute(\"d\", this.createPathShape(matrixHelper, shapes));\n          } else {\n            shapeStr += this.createPathShape(matrixHelper, shapes);\n          }\n        } else {\n          if (singleShape) {\n            tSpan.setAttribute(\"transform\", \"translate(\" + matrixHelper.props[12] + \",\" + matrixHelper.props[13] + \")\");\n          }\n\n          tSpan.textContent = letters[i].val;\n          tSpan.setAttributeNS(\"http://www.w3.org/XML/1998/namespace\", \"xml:space\", \"preserve\");\n        } //\n\n      }\n\n      if (singleShape && tSpan) {\n        tSpan.setAttribute(\"d\", shapeStr);\n      }\n    }\n\n    while (i < (this || _global).textSpans.length) {\n      (this || _global).textSpans[i].style.display = \"none\";\n      i += 1;\n    }\n\n    (this || _global)._sizeChanged = true;\n  };\n\n  SVGTextLottieElement.prototype.sourceRectAtTime = function () {\n    this.prepareFrame((this || _global).comp.renderedFrame - (this || _global).data.st);\n    this.renderInnerContent();\n\n    if ((this || _global)._sizeChanged) {\n      (this || _global)._sizeChanged = false;\n\n      var textBox = (this || _global).layerElement.getBBox();\n\n      (this || _global).bbox = {\n        top: textBox.y,\n        left: textBox.x,\n        width: textBox.width,\n        height: textBox.height\n      };\n    }\n\n    return (this || _global).bbox;\n  };\n\n  SVGTextLottieElement.prototype.renderInnerContent = function () {\n    if (!(this || _global).data.singleShape) {\n      (this || _global).textAnimator.getMeasures((this || _global).textProperty.currentData, (this || _global).lettersChangedFlag);\n\n      if ((this || _global).lettersChangedFlag || (this || _global).textAnimator.lettersChangedFlag) {\n        (this || _global)._sizeChanged = true;\n        var i;\n        var len;\n        var renderedLetters = (this || _global).textAnimator.renderedLetters;\n        var letters = (this || _global).textProperty.currentData.l;\n        len = letters.length;\n        var renderedLetter;\n        var textSpan;\n\n        for (i = 0; i < len; i += 1) {\n          if (!letters[i].n) {\n            renderedLetter = renderedLetters[i];\n            textSpan = (this || _global).textSpans[i];\n\n            if (renderedLetter._mdf.m) {\n              textSpan.setAttribute(\"transform\", renderedLetter.m);\n            }\n\n            if (renderedLetter._mdf.o) {\n              textSpan.setAttribute(\"opacity\", renderedLetter.o);\n            }\n\n            if (renderedLetter._mdf.sw) {\n              textSpan.setAttribute(\"stroke-width\", renderedLetter.sw);\n            }\n\n            if (renderedLetter._mdf.sc) {\n              textSpan.setAttribute(\"stroke\", renderedLetter.sc);\n            }\n\n            if (renderedLetter._mdf.fc) {\n              textSpan.setAttribute(\"fill\", renderedLetter.fc);\n            }\n          }\n        }\n      }\n    }\n  };\n  /* global extendPrototype, BaseElement, TransformElement, SVGBaseElement, IShapeElement, HierarchyElement,\r\n  FrameElement, RenderableDOMElement, Matrix, SVGStyleData, SVGStrokeStyleData, SVGFillStyleData,\r\n  SVGGradientFillStyleData, SVGGradientStrokeStyleData, locationHref, getBlendMode, ShapeGroupData,\r\n  TransformPropertyFactory, SVGTransformData, ShapePropertyFactory, SVGShapeData, SVGElementsRenderer, ShapeModifiers */\n\n\n  function SVGShapeElement(data, globalData, comp) {\n    // List of drawable elements\n    (this || _global).shapes = []; // Full shape data\n\n    (this || _global).shapesData = data.shapes; // List of styles that will be applied to shapes\n\n    (this || _global).stylesList = []; // List of modifiers that will be applied to shapes\n\n    (this || _global).shapeModifiers = []; // List of items in shape tree\n\n    (this || _global).itemsData = []; // List of items in previous shape tree\n\n    (this || _global).processedElements = []; // List of animated components\n\n    (this || _global).animatedContents = [];\n    this.initElement(data, globalData, comp); // Moving any property that doesn't get too much access after initialization because of v8 way of handling more than 10 properties.\n    // List of elements that have been created\n\n    (this || _global).prevViewData = []; // Moving any property that doesn't get too much access after initialization because of v8 way of handling more than 10 properties.\n  }\n\n  extendPrototype([BaseElement, TransformElement, SVGBaseElement, IShapeElement, HierarchyElement, FrameElement, RenderableDOMElement], SVGShapeElement);\n\n  SVGShapeElement.prototype.initSecondaryElement = function () {};\n\n  SVGShapeElement.prototype.identityMatrix = new Matrix();\n\n  SVGShapeElement.prototype.buildExpressionInterface = function () {};\n\n  SVGShapeElement.prototype.createContent = function () {\n    this.searchShapes((this || _global).shapesData, (this || _global).itemsData, (this || _global).prevViewData, (this || _global).layerElement, 0, [], true);\n    this.filterUniqueShapes();\n  };\n  /*\r\n  This method searches for multiple shapes that affect a single element and one of them is animated\r\n  */\n\n\n  SVGShapeElement.prototype.filterUniqueShapes = function () {\n    var i;\n    var len = (this || _global).shapes.length;\n    var shape;\n    var j;\n    var jLen = (this || _global).stylesList.length;\n    var style;\n    var tempShapes = [];\n    var areAnimated = false;\n\n    for (j = 0; j < jLen; j += 1) {\n      style = (this || _global).stylesList[j];\n      areAnimated = false;\n      tempShapes.length = 0;\n\n      for (i = 0; i < len; i += 1) {\n        shape = (this || _global).shapes[i];\n\n        if (shape.styles.indexOf(style) !== -1) {\n          tempShapes.push(shape);\n          areAnimated = shape._isAnimated || areAnimated;\n        }\n      }\n\n      if (tempShapes.length > 1 && areAnimated) {\n        this.setShapesAsAnimated(tempShapes);\n      }\n    }\n  };\n\n  SVGShapeElement.prototype.setShapesAsAnimated = function (shapes) {\n    var i;\n    var len = shapes.length;\n\n    for (i = 0; i < len; i += 1) {\n      shapes[i].setAsAnimated();\n    }\n  };\n\n  SVGShapeElement.prototype.createStyleElement = function (data, level) {\n    // TODO: prevent drawing of hidden styles\n    var elementData;\n    var styleOb = new SVGStyleData(data, level);\n    var pathElement = styleOb.pElem;\n\n    if (data.ty === \"st\") {\n      elementData = new SVGStrokeStyleData(this || _global, data, styleOb);\n    } else if (data.ty === \"fl\") {\n      elementData = new SVGFillStyleData(this || _global, data, styleOb);\n    } else if (data.ty === \"gf\" || data.ty === \"gs\") {\n      var GradientConstructor = data.ty === \"gf\" ? SVGGradientFillStyleData : SVGGradientStrokeStyleData;\n      elementData = new GradientConstructor(this || _global, data, styleOb);\n\n      (this || _global).globalData.defs.appendChild(elementData.gf);\n\n      if (elementData.maskId) {\n        (this || _global).globalData.defs.appendChild(elementData.ms);\n\n        (this || _global).globalData.defs.appendChild(elementData.of);\n\n        pathElement.setAttribute(\"mask\", \"url(\" + locationHref + \"#\" + elementData.maskId + \")\");\n      }\n    }\n\n    if (data.ty === \"st\" || data.ty === \"gs\") {\n      pathElement.setAttribute(\"stroke-linecap\", (this || _global).lcEnum[data.lc] || \"round\");\n      pathElement.setAttribute(\"stroke-linejoin\", (this || _global).ljEnum[data.lj] || \"round\");\n      pathElement.setAttribute(\"fill-opacity\", \"0\");\n\n      if (data.lj === 1) {\n        pathElement.setAttribute(\"stroke-miterlimit\", data.ml);\n      }\n    }\n\n    if (data.r === 2) {\n      pathElement.setAttribute(\"fill-rule\", \"evenodd\");\n    }\n\n    if (data.ln) {\n      pathElement.setAttribute(\"id\", data.ln);\n    }\n\n    if (data.cl) {\n      pathElement.setAttribute(\"class\", data.cl);\n    }\n\n    if (data.bm) {\n      pathElement.style[\"mix-blend-mode\"] = getBlendMode(data.bm);\n    }\n\n    (this || _global).stylesList.push(styleOb);\n\n    this.addToAnimatedContents(data, elementData);\n    return elementData;\n  };\n\n  SVGShapeElement.prototype.createGroupElement = function (data) {\n    var elementData = new ShapeGroupData();\n\n    if (data.ln) {\n      elementData.gr.setAttribute(\"id\", data.ln);\n    }\n\n    if (data.cl) {\n      elementData.gr.setAttribute(\"class\", data.cl);\n    }\n\n    if (data.bm) {\n      elementData.gr.style[\"mix-blend-mode\"] = getBlendMode(data.bm);\n    }\n\n    return elementData;\n  };\n\n  SVGShapeElement.prototype.createTransformElement = function (data, container) {\n    var transformProperty = TransformPropertyFactory.getTransformProperty(this || _global, data, this || _global);\n    var elementData = new SVGTransformData(transformProperty, transformProperty.o, container);\n    this.addToAnimatedContents(data, elementData);\n    return elementData;\n  };\n\n  SVGShapeElement.prototype.createShapeElement = function (data, ownTransformers, level) {\n    var ty = 4;\n\n    if (data.ty === \"rc\") {\n      ty = 5;\n    } else if (data.ty === \"el\") {\n      ty = 6;\n    } else if (data.ty === \"sr\") {\n      ty = 7;\n    }\n\n    var shapeProperty = ShapePropertyFactory.getShapeProp(this || _global, data, ty, this || _global);\n    var elementData = new SVGShapeData(ownTransformers, level, shapeProperty);\n\n    (this || _global).shapes.push(elementData);\n\n    this.addShapeToModifiers(elementData);\n    this.addToAnimatedContents(data, elementData);\n    return elementData;\n  };\n\n  SVGShapeElement.prototype.addToAnimatedContents = function (data, element) {\n    var i = 0;\n    var len = (this || _global).animatedContents.length;\n\n    while (i < len) {\n      if ((this || _global).animatedContents[i].element === element) {\n        return;\n      }\n\n      i += 1;\n    }\n\n    (this || _global).animatedContents.push({\n      fn: SVGElementsRenderer.createRenderFunction(data),\n      element: element,\n      data: data\n    });\n  };\n\n  SVGShapeElement.prototype.setElementStyles = function (elementData) {\n    var arr = elementData.styles;\n    var j;\n    var jLen = (this || _global).stylesList.length;\n\n    for (j = 0; j < jLen; j += 1) {\n      if (!(this || _global).stylesList[j].closed) {\n        arr.push((this || _global).stylesList[j]);\n      }\n    }\n  };\n\n  SVGShapeElement.prototype.reloadShapes = function () {\n    (this || _global)._isFirstFrame = true;\n    var i;\n    var len = (this || _global).itemsData.length;\n\n    for (i = 0; i < len; i += 1) {\n      (this || _global).prevViewData[i] = (this || _global).itemsData[i];\n    }\n\n    this.searchShapes((this || _global).shapesData, (this || _global).itemsData, (this || _global).prevViewData, (this || _global).layerElement, 0, [], true);\n    this.filterUniqueShapes();\n    len = (this || _global).dynamicProperties.length;\n\n    for (i = 0; i < len; i += 1) {\n      (this || _global).dynamicProperties[i].getValue();\n    }\n\n    this.renderModifiers();\n  };\n\n  SVGShapeElement.prototype.searchShapes = function (arr, itemsData, prevViewData, container, level, transformers, render) {\n    var ownTransformers = [].concat(transformers);\n    var i;\n    var len = arr.length - 1;\n    var j;\n    var jLen;\n    var ownStyles = [];\n    var ownModifiers = [];\n    var currentTransform;\n    var modifier;\n    var processedPos;\n\n    for (i = len; i >= 0; i -= 1) {\n      processedPos = this.searchProcessedElement(arr[i]);\n\n      if (!processedPos) {\n        arr[i]._render = render;\n      } else {\n        itemsData[i] = prevViewData[processedPos - 1];\n      }\n\n      if (arr[i].ty === \"fl\" || arr[i].ty === \"st\" || arr[i].ty === \"gf\" || arr[i].ty === \"gs\") {\n        if (!processedPos) {\n          itemsData[i] = this.createStyleElement(arr[i], level);\n        } else {\n          itemsData[i].style.closed = false;\n        }\n\n        if (arr[i]._render) {\n          container.appendChild(itemsData[i].style.pElem);\n        }\n\n        ownStyles.push(itemsData[i].style);\n      } else if (arr[i].ty === \"gr\") {\n        if (!processedPos) {\n          itemsData[i] = this.createGroupElement(arr[i]);\n        } else {\n          jLen = itemsData[i].it.length;\n\n          for (j = 0; j < jLen; j += 1) {\n            itemsData[i].prevViewData[j] = itemsData[i].it[j];\n          }\n        }\n\n        this.searchShapes(arr[i].it, itemsData[i].it, itemsData[i].prevViewData, itemsData[i].gr, level + 1, ownTransformers, render);\n\n        if (arr[i]._render) {\n          container.appendChild(itemsData[i].gr);\n        }\n      } else if (arr[i].ty === \"tr\") {\n        if (!processedPos) {\n          itemsData[i] = this.createTransformElement(arr[i], container);\n        }\n\n        currentTransform = itemsData[i].transform;\n        ownTransformers.push(currentTransform);\n      } else if (arr[i].ty === \"sh\" || arr[i].ty === \"rc\" || arr[i].ty === \"el\" || arr[i].ty === \"sr\") {\n        if (!processedPos) {\n          itemsData[i] = this.createShapeElement(arr[i], ownTransformers, level);\n        }\n\n        this.setElementStyles(itemsData[i]);\n      } else if (arr[i].ty === \"tm\" || arr[i].ty === \"rd\" || arr[i].ty === \"ms\" || arr[i].ty === \"pb\") {\n        if (!processedPos) {\n          modifier = ShapeModifiers.getModifier(arr[i].ty);\n          modifier.init(this || _global, arr[i]);\n          itemsData[i] = modifier;\n\n          (this || _global).shapeModifiers.push(modifier);\n        } else {\n          modifier = itemsData[i];\n          modifier.closed = false;\n        }\n\n        ownModifiers.push(modifier);\n      } else if (arr[i].ty === \"rp\") {\n        if (!processedPos) {\n          modifier = ShapeModifiers.getModifier(arr[i].ty);\n          itemsData[i] = modifier;\n          modifier.init(this || _global, arr, i, itemsData);\n\n          (this || _global).shapeModifiers.push(modifier);\n\n          render = false;\n        } else {\n          modifier = itemsData[i];\n          modifier.closed = true;\n        }\n\n        ownModifiers.push(modifier);\n      }\n\n      this.addProcessedElement(arr[i], i + 1);\n    }\n\n    len = ownStyles.length;\n\n    for (i = 0; i < len; i += 1) {\n      ownStyles[i].closed = true;\n    }\n\n    len = ownModifiers.length;\n\n    for (i = 0; i < len; i += 1) {\n      ownModifiers[i].closed = true;\n    }\n  };\n\n  SVGShapeElement.prototype.renderInnerContent = function () {\n    this.renderModifiers();\n    var i;\n    var len = (this || _global).stylesList.length;\n\n    for (i = 0; i < len; i += 1) {\n      (this || _global).stylesList[i].reset();\n    }\n\n    this.renderShape();\n\n    for (i = 0; i < len; i += 1) {\n      if ((this || _global).stylesList[i]._mdf || (this || _global)._isFirstFrame) {\n        if ((this || _global).stylesList[i].msElem) {\n          (this || _global).stylesList[i].msElem.setAttribute(\"d\", (this || _global).stylesList[i].d); // Adding M0 0 fixes same mask bug on all browsers\n\n\n          (this || _global).stylesList[i].d = \"M0 0\" + (this || _global).stylesList[i].d;\n        }\n\n        (this || _global).stylesList[i].pElem.setAttribute(\"d\", (this || _global).stylesList[i].d || \"M0 0\");\n      }\n    }\n  };\n\n  SVGShapeElement.prototype.renderShape = function () {\n    var i;\n    var len = (this || _global).animatedContents.length;\n    var animatedContent;\n\n    for (i = 0; i < len; i += 1) {\n      animatedContent = (this || _global).animatedContents[i];\n\n      if (((this || _global)._isFirstFrame || animatedContent.element._isAnimated) && animatedContent.data !== true) {\n        animatedContent.fn(animatedContent.data, animatedContent.element, (this || _global)._isFirstFrame);\n      }\n    }\n  };\n\n  SVGShapeElement.prototype.destroy = function () {\n    this.destroyBaseElement();\n    (this || _global).shapesData = null;\n    (this || _global).itemsData = null;\n  };\n  /* global createNS */\n\n\n  function SVGTintFilter(filter, filterManager) {\n    (this || _global).filterManager = filterManager;\n    var feColorMatrix = createNS(\"feColorMatrix\");\n    feColorMatrix.setAttribute(\"type\", \"matrix\");\n    feColorMatrix.setAttribute(\"color-interpolation-filters\", \"linearRGB\");\n    feColorMatrix.setAttribute(\"values\", \"0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0 0 0 1 0\");\n    feColorMatrix.setAttribute(\"result\", \"f1\");\n    filter.appendChild(feColorMatrix);\n    feColorMatrix = createNS(\"feColorMatrix\");\n    feColorMatrix.setAttribute(\"type\", \"matrix\");\n    feColorMatrix.setAttribute(\"color-interpolation-filters\", \"sRGB\");\n    feColorMatrix.setAttribute(\"values\", \"1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0\");\n    feColorMatrix.setAttribute(\"result\", \"f2\");\n    filter.appendChild(feColorMatrix);\n    (this || _global).matrixFilter = feColorMatrix;\n\n    if (filterManager.effectElements[2].p.v !== 100 || filterManager.effectElements[2].p.k) {\n      var feMerge = createNS(\"feMerge\");\n      filter.appendChild(feMerge);\n      var feMergeNode;\n      feMergeNode = createNS(\"feMergeNode\");\n      feMergeNode.setAttribute(\"in\", \"SourceGraphic\");\n      feMerge.appendChild(feMergeNode);\n      feMergeNode = createNS(\"feMergeNode\");\n      feMergeNode.setAttribute(\"in\", \"f2\");\n      feMerge.appendChild(feMergeNode);\n    }\n  }\n\n  SVGTintFilter.prototype.renderFrame = function (forceRender) {\n    if (forceRender || (this || _global).filterManager._mdf) {\n      var colorBlack = (this || _global).filterManager.effectElements[0].p.v;\n      var colorWhite = (this || _global).filterManager.effectElements[1].p.v;\n      var opacity = (this || _global).filterManager.effectElements[2].p.v / 100;\n\n      (this || _global).matrixFilter.setAttribute(\"values\", colorWhite[0] - colorBlack[0] + \" 0 0 0 \" + colorBlack[0] + \" \" + (colorWhite[1] - colorBlack[1]) + \" 0 0 0 \" + colorBlack[1] + \" \" + (colorWhite[2] - colorBlack[2]) + \" 0 0 0 \" + colorBlack[2] + \" 0 0 0 \" + opacity + \" 0\");\n    }\n  };\n  /* global createNS */\n\n\n  function SVGFillFilter(filter, filterManager) {\n    (this || _global).filterManager = filterManager;\n    var feColorMatrix = createNS(\"feColorMatrix\");\n    feColorMatrix.setAttribute(\"type\", \"matrix\");\n    feColorMatrix.setAttribute(\"color-interpolation-filters\", \"sRGB\");\n    feColorMatrix.setAttribute(\"values\", \"1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0\");\n    filter.appendChild(feColorMatrix);\n    (this || _global).matrixFilter = feColorMatrix;\n  }\n\n  SVGFillFilter.prototype.renderFrame = function (forceRender) {\n    if (forceRender || (this || _global).filterManager._mdf) {\n      var color = (this || _global).filterManager.effectElements[2].p.v;\n      var opacity = (this || _global).filterManager.effectElements[6].p.v;\n\n      (this || _global).matrixFilter.setAttribute(\"values\", \"0 0 0 0 \" + color[0] + \" 0 0 0 0 \" + color[1] + \" 0 0 0 0 \" + color[2] + \" 0 0 0 \" + opacity + \" 0\");\n    }\n  };\n  /* global createNS */\n\n\n  function SVGGaussianBlurEffect(filter, filterManager) {\n    // Outset the filter region by 100% on all sides to accommodate blur expansion.\n    filter.setAttribute(\"x\", \"-100%\");\n    filter.setAttribute(\"y\", \"-100%\");\n    filter.setAttribute(\"width\", \"300%\");\n    filter.setAttribute(\"height\", \"300%\");\n    (this || _global).filterManager = filterManager;\n    var feGaussianBlur = createNS(\"feGaussianBlur\");\n    filter.appendChild(feGaussianBlur);\n    (this || _global).feGaussianBlur = feGaussianBlur;\n  }\n\n  SVGGaussianBlurEffect.prototype.renderFrame = function (forceRender) {\n    if (forceRender || (this || _global).filterManager._mdf) {\n      // Empirical value, matching AE's blur appearance.\n      var kBlurrinessToSigma = 0.3;\n      var sigma = (this || _global).filterManager.effectElements[0].p.v * kBlurrinessToSigma; // Dimensions mapping:\n      //\n      //   1 -> horizontal & vertical\n      //   2 -> horizontal only\n      //   3 -> vertical only\n      //\n\n      var dimensions = (this || _global).filterManager.effectElements[1].p.v;\n      var sigmaX = dimensions == 3 ? 0 : sigma; // eslint-disable-line eqeqeq\n\n      var sigmaY = dimensions == 2 ? 0 : sigma; // eslint-disable-line eqeqeq\n\n      (this || _global).feGaussianBlur.setAttribute(\"stdDeviation\", sigmaX + \" \" + sigmaY); // Repeat edges mapping:\n      //\n      //   0 -> off -> duplicate\n      //   1 -> on  -> wrap\n\n\n      var edgeMode = (this || _global).filterManager.effectElements[2].p.v == 1 ? \"wrap\" : \"duplicate\"; // eslint-disable-line eqeqeq\n\n      (this || _global).feGaussianBlur.setAttribute(\"edgeMode\", edgeMode);\n    }\n  };\n  /* global createNS, createElementID, locationHref, bmFloor */\n\n\n  function SVGStrokeEffect(elem, filterManager) {\n    (this || _global).initialized = false;\n    (this || _global).filterManager = filterManager;\n    (this || _global).elem = elem;\n    (this || _global).paths = [];\n  }\n\n  SVGStrokeEffect.prototype.initialize = function () {\n    var elemChildren = (this || _global).elem.layerElement.children || (this || _global).elem.layerElement.childNodes;\n    var path;\n    var groupPath;\n    var i;\n    var len;\n\n    if ((this || _global).filterManager.effectElements[1].p.v === 1) {\n      len = (this || _global).elem.maskManager.masksProperties.length;\n      i = 0;\n    } else {\n      i = (this || _global).filterManager.effectElements[0].p.v - 1;\n      len = i + 1;\n    }\n\n    groupPath = createNS(\"g\");\n    groupPath.setAttribute(\"fill\", \"none\");\n    groupPath.setAttribute(\"stroke-linecap\", \"round\");\n    groupPath.setAttribute(\"stroke-dashoffset\", 1);\n\n    for (i; i < len; i += 1) {\n      path = createNS(\"path\");\n      groupPath.appendChild(path);\n\n      (this || _global).paths.push({\n        p: path,\n        m: i\n      });\n    }\n\n    if ((this || _global).filterManager.effectElements[10].p.v === 3) {\n      var mask = createNS(\"mask\");\n      var id = createElementID();\n      mask.setAttribute(\"id\", id);\n      mask.setAttribute(\"mask-type\", \"alpha\");\n      mask.appendChild(groupPath);\n\n      (this || _global).elem.globalData.defs.appendChild(mask);\n\n      var g = createNS(\"g\");\n      g.setAttribute(\"mask\", \"url(\" + locationHref + \"#\" + id + \")\");\n\n      while (elemChildren[0]) {\n        g.appendChild(elemChildren[0]);\n      }\n\n      (this || _global).elem.layerElement.appendChild(g);\n\n      (this || _global).masker = mask;\n      groupPath.setAttribute(\"stroke\", \"#fff\");\n    } else if ((this || _global).filterManager.effectElements[10].p.v === 1 || (this || _global).filterManager.effectElements[10].p.v === 2) {\n      if ((this || _global).filterManager.effectElements[10].p.v === 2) {\n        elemChildren = (this || _global).elem.layerElement.children || (this || _global).elem.layerElement.childNodes;\n\n        while (elemChildren.length) {\n          (this || _global).elem.layerElement.removeChild(elemChildren[0]);\n        }\n      }\n\n      (this || _global).elem.layerElement.appendChild(groupPath);\n\n      (this || _global).elem.layerElement.removeAttribute(\"mask\");\n\n      groupPath.setAttribute(\"stroke\", \"#fff\");\n    }\n\n    (this || _global).initialized = true;\n    (this || _global).pathMasker = groupPath;\n  };\n\n  SVGStrokeEffect.prototype.renderFrame = function (forceRender) {\n    if (!(this || _global).initialized) {\n      this.initialize();\n    }\n\n    var i;\n    var len = (this || _global).paths.length;\n    var mask;\n    var path;\n\n    for (i = 0; i < len; i += 1) {\n      if ((this || _global).paths[i].m !== -1) {\n        mask = (this || _global).elem.maskManager.viewData[(this || _global).paths[i].m];\n        path = (this || _global).paths[i].p;\n\n        if (forceRender || (this || _global).filterManager._mdf || mask.prop._mdf) {\n          path.setAttribute(\"d\", mask.lastPath);\n        }\n\n        if (forceRender || (this || _global).filterManager.effectElements[9].p._mdf || (this || _global).filterManager.effectElements[4].p._mdf || (this || _global).filterManager.effectElements[7].p._mdf || (this || _global).filterManager.effectElements[8].p._mdf || mask.prop._mdf) {\n          var dasharrayValue;\n\n          if ((this || _global).filterManager.effectElements[7].p.v !== 0 || (this || _global).filterManager.effectElements[8].p.v !== 100) {\n            var s = Math.min((this || _global).filterManager.effectElements[7].p.v, (this || _global).filterManager.effectElements[8].p.v) * 0.01;\n            var e = Math.max((this || _global).filterManager.effectElements[7].p.v, (this || _global).filterManager.effectElements[8].p.v) * 0.01;\n            var l = path.getTotalLength();\n            dasharrayValue = \"0 0 0 \" + l * s + \" \";\n            var lineLength = l * (e - s);\n            var segment = 1 + (this || _global).filterManager.effectElements[4].p.v * 2 * (this || _global).filterManager.effectElements[9].p.v * 0.01;\n            var units = Math.floor(lineLength / segment);\n            var j;\n\n            for (j = 0; j < units; j += 1) {\n              dasharrayValue += \"1 \" + (this || _global).filterManager.effectElements[4].p.v * 2 * (this || _global).filterManager.effectElements[9].p.v * 0.01 + \" \";\n            }\n\n            dasharrayValue += \"0 \" + l * 10 + \" 0 0\";\n          } else {\n            dasharrayValue = \"1 \" + (this || _global).filterManager.effectElements[4].p.v * 2 * (this || _global).filterManager.effectElements[9].p.v * 0.01;\n          }\n\n          path.setAttribute(\"stroke-dasharray\", dasharrayValue);\n        }\n      }\n    }\n\n    if (forceRender || (this || _global).filterManager.effectElements[4].p._mdf) {\n      (this || _global).pathMasker.setAttribute(\"stroke-width\", (this || _global).filterManager.effectElements[4].p.v * 2);\n    }\n\n    if (forceRender || (this || _global).filterManager.effectElements[6].p._mdf) {\n      (this || _global).pathMasker.setAttribute(\"opacity\", (this || _global).filterManager.effectElements[6].p.v);\n    }\n\n    if ((this || _global).filterManager.effectElements[10].p.v === 1 || (this || _global).filterManager.effectElements[10].p.v === 2) {\n      if (forceRender || (this || _global).filterManager.effectElements[3].p._mdf) {\n        var color = (this || _global).filterManager.effectElements[3].p.v;\n\n        (this || _global).pathMasker.setAttribute(\"stroke\", \"rgb(\" + bmFloor(color[0] * 255) + \",\" + bmFloor(color[1] * 255) + \",\" + bmFloor(color[2] * 255) + \")\");\n      }\n    }\n  };\n  /* global createNS */\n\n\n  function SVGTritoneFilter(filter, filterManager) {\n    (this || _global).filterManager = filterManager;\n    var feColorMatrix = createNS(\"feColorMatrix\");\n    feColorMatrix.setAttribute(\"type\", \"matrix\");\n    feColorMatrix.setAttribute(\"color-interpolation-filters\", \"linearRGB\");\n    feColorMatrix.setAttribute(\"values\", \"0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0 0 0 1 0\");\n    feColorMatrix.setAttribute(\"result\", \"f1\");\n    filter.appendChild(feColorMatrix);\n    var feComponentTransfer = createNS(\"feComponentTransfer\");\n    feComponentTransfer.setAttribute(\"color-interpolation-filters\", \"sRGB\");\n    filter.appendChild(feComponentTransfer);\n    (this || _global).matrixFilter = feComponentTransfer;\n    var feFuncR = createNS(\"feFuncR\");\n    feFuncR.setAttribute(\"type\", \"table\");\n    feComponentTransfer.appendChild(feFuncR);\n    (this || _global).feFuncR = feFuncR;\n    var feFuncG = createNS(\"feFuncG\");\n    feFuncG.setAttribute(\"type\", \"table\");\n    feComponentTransfer.appendChild(feFuncG);\n    (this || _global).feFuncG = feFuncG;\n    var feFuncB = createNS(\"feFuncB\");\n    feFuncB.setAttribute(\"type\", \"table\");\n    feComponentTransfer.appendChild(feFuncB);\n    (this || _global).feFuncB = feFuncB;\n  }\n\n  SVGTritoneFilter.prototype.renderFrame = function (forceRender) {\n    if (forceRender || (this || _global).filterManager._mdf) {\n      var color1 = (this || _global).filterManager.effectElements[0].p.v;\n      var color2 = (this || _global).filterManager.effectElements[1].p.v;\n      var color3 = (this || _global).filterManager.effectElements[2].p.v;\n      var tableR = color3[0] + \" \" + color2[0] + \" \" + color1[0];\n      var tableG = color3[1] + \" \" + color2[1] + \" \" + color1[1];\n      var tableB = color3[2] + \" \" + color2[2] + \" \" + color1[2];\n\n      (this || _global).feFuncR.setAttribute(\"tableValues\", tableR);\n\n      (this || _global).feFuncG.setAttribute(\"tableValues\", tableG);\n\n      (this || _global).feFuncB.setAttribute(\"tableValues\", tableB); // var opacity = this.filterManager.effectElements[2].p.v/100;\n      // this.matrixFilter.setAttribute('values',(colorWhite[0]- colorBlack[0])+' 0 0 0 '+ colorBlack[0] +' '+ (colorWhite[1]- colorBlack[1]) +' 0 0 0 '+ colorBlack[1] +' '+ (colorWhite[2]- colorBlack[2]) +' 0 0 0 '+ colorBlack[2] +' 0 0 0 ' + opacity + ' 0');\n\n    }\n  };\n  /* global createNS */\n\n\n  function SVGProLevelsFilter(filter, filterManager) {\n    (this || _global).filterManager = filterManager;\n    var effectElements = (this || _global).filterManager.effectElements;\n    var feComponentTransfer = createNS(\"feComponentTransfer\");\n\n    if (effectElements[10].p.k || effectElements[10].p.v !== 0 || effectElements[11].p.k || effectElements[11].p.v !== 1 || effectElements[12].p.k || effectElements[12].p.v !== 1 || effectElements[13].p.k || effectElements[13].p.v !== 0 || effectElements[14].p.k || effectElements[14].p.v !== 1) {\n      (this || _global).feFuncR = this.createFeFunc(\"feFuncR\", feComponentTransfer);\n    }\n\n    if (effectElements[17].p.k || effectElements[17].p.v !== 0 || effectElements[18].p.k || effectElements[18].p.v !== 1 || effectElements[19].p.k || effectElements[19].p.v !== 1 || effectElements[20].p.k || effectElements[20].p.v !== 0 || effectElements[21].p.k || effectElements[21].p.v !== 1) {\n      (this || _global).feFuncG = this.createFeFunc(\"feFuncG\", feComponentTransfer);\n    }\n\n    if (effectElements[24].p.k || effectElements[24].p.v !== 0 || effectElements[25].p.k || effectElements[25].p.v !== 1 || effectElements[26].p.k || effectElements[26].p.v !== 1 || effectElements[27].p.k || effectElements[27].p.v !== 0 || effectElements[28].p.k || effectElements[28].p.v !== 1) {\n      (this || _global).feFuncB = this.createFeFunc(\"feFuncB\", feComponentTransfer);\n    }\n\n    if (effectElements[31].p.k || effectElements[31].p.v !== 0 || effectElements[32].p.k || effectElements[32].p.v !== 1 || effectElements[33].p.k || effectElements[33].p.v !== 1 || effectElements[34].p.k || effectElements[34].p.v !== 0 || effectElements[35].p.k || effectElements[35].p.v !== 1) {\n      (this || _global).feFuncA = this.createFeFunc(\"feFuncA\", feComponentTransfer);\n    }\n\n    if ((this || _global).feFuncR || (this || _global).feFuncG || (this || _global).feFuncB || (this || _global).feFuncA) {\n      feComponentTransfer.setAttribute(\"color-interpolation-filters\", \"sRGB\");\n      filter.appendChild(feComponentTransfer);\n      feComponentTransfer = createNS(\"feComponentTransfer\");\n    }\n\n    if (effectElements[3].p.k || effectElements[3].p.v !== 0 || effectElements[4].p.k || effectElements[4].p.v !== 1 || effectElements[5].p.k || effectElements[5].p.v !== 1 || effectElements[6].p.k || effectElements[6].p.v !== 0 || effectElements[7].p.k || effectElements[7].p.v !== 1) {\n      feComponentTransfer.setAttribute(\"color-interpolation-filters\", \"sRGB\");\n      filter.appendChild(feComponentTransfer);\n      (this || _global).feFuncRComposed = this.createFeFunc(\"feFuncR\", feComponentTransfer);\n      (this || _global).feFuncGComposed = this.createFeFunc(\"feFuncG\", feComponentTransfer);\n      (this || _global).feFuncBComposed = this.createFeFunc(\"feFuncB\", feComponentTransfer);\n    }\n  }\n\n  SVGProLevelsFilter.prototype.createFeFunc = function (type, feComponentTransfer) {\n    var feFunc = createNS(type);\n    feFunc.setAttribute(\"type\", \"table\");\n    feComponentTransfer.appendChild(feFunc);\n    return feFunc;\n  };\n\n  SVGProLevelsFilter.prototype.getTableValue = function (inputBlack, inputWhite, gamma, outputBlack, outputWhite) {\n    var cnt = 0;\n    var segments = 256;\n    var perc;\n    var min = Math.min(inputBlack, inputWhite);\n    var max = Math.max(inputBlack, inputWhite);\n    var table = Array.call(null, {\n      length: segments\n    });\n    var colorValue;\n    var pos = 0;\n    var outputDelta = outputWhite - outputBlack;\n    var inputDelta = inputWhite - inputBlack;\n\n    while (cnt <= 256) {\n      perc = cnt / 256;\n\n      if (perc <= min) {\n        colorValue = inputDelta < 0 ? outputWhite : outputBlack;\n      } else if (perc >= max) {\n        colorValue = inputDelta < 0 ? outputBlack : outputWhite;\n      } else {\n        colorValue = outputBlack + outputDelta * Math.pow((perc - inputBlack) / inputDelta, 1 / gamma);\n      }\n\n      table[pos] = colorValue;\n      pos += 1;\n      cnt += 256 / (segments - 1);\n    }\n\n    return table.join(\" \");\n  };\n\n  SVGProLevelsFilter.prototype.renderFrame = function (forceRender) {\n    if (forceRender || (this || _global).filterManager._mdf) {\n      var val;\n      var effectElements = (this || _global).filterManager.effectElements;\n\n      if ((this || _global).feFuncRComposed && (forceRender || effectElements[3].p._mdf || effectElements[4].p._mdf || effectElements[5].p._mdf || effectElements[6].p._mdf || effectElements[7].p._mdf)) {\n        val = this.getTableValue(effectElements[3].p.v, effectElements[4].p.v, effectElements[5].p.v, effectElements[6].p.v, effectElements[7].p.v);\n\n        (this || _global).feFuncRComposed.setAttribute(\"tableValues\", val);\n\n        (this || _global).feFuncGComposed.setAttribute(\"tableValues\", val);\n\n        (this || _global).feFuncBComposed.setAttribute(\"tableValues\", val);\n      }\n\n      if ((this || _global).feFuncR && (forceRender || effectElements[10].p._mdf || effectElements[11].p._mdf || effectElements[12].p._mdf || effectElements[13].p._mdf || effectElements[14].p._mdf)) {\n        val = this.getTableValue(effectElements[10].p.v, effectElements[11].p.v, effectElements[12].p.v, effectElements[13].p.v, effectElements[14].p.v);\n\n        (this || _global).feFuncR.setAttribute(\"tableValues\", val);\n      }\n\n      if ((this || _global).feFuncG && (forceRender || effectElements[17].p._mdf || effectElements[18].p._mdf || effectElements[19].p._mdf || effectElements[20].p._mdf || effectElements[21].p._mdf)) {\n        val = this.getTableValue(effectElements[17].p.v, effectElements[18].p.v, effectElements[19].p.v, effectElements[20].p.v, effectElements[21].p.v);\n\n        (this || _global).feFuncG.setAttribute(\"tableValues\", val);\n      }\n\n      if ((this || _global).feFuncB && (forceRender || effectElements[24].p._mdf || effectElements[25].p._mdf || effectElements[26].p._mdf || effectElements[27].p._mdf || effectElements[28].p._mdf)) {\n        val = this.getTableValue(effectElements[24].p.v, effectElements[25].p.v, effectElements[26].p.v, effectElements[27].p.v, effectElements[28].p.v);\n\n        (this || _global).feFuncB.setAttribute(\"tableValues\", val);\n      }\n\n      if ((this || _global).feFuncA && (forceRender || effectElements[31].p._mdf || effectElements[32].p._mdf || effectElements[33].p._mdf || effectElements[34].p._mdf || effectElements[35].p._mdf)) {\n        val = this.getTableValue(effectElements[31].p.v, effectElements[32].p.v, effectElements[33].p.v, effectElements[34].p.v, effectElements[35].p.v);\n\n        (this || _global).feFuncA.setAttribute(\"tableValues\", val);\n      }\n    }\n  };\n  /* global createNS, rgbToHex, degToRads */\n\n\n  function SVGDropShadowEffect(filter, filterManager) {\n    var filterSize = filterManager.container.globalData.renderConfig.filterSize;\n    filter.setAttribute(\"x\", filterSize.x);\n    filter.setAttribute(\"y\", filterSize.y);\n    filter.setAttribute(\"width\", filterSize.width);\n    filter.setAttribute(\"height\", filterSize.height);\n    (this || _global).filterManager = filterManager;\n    var feGaussianBlur = createNS(\"feGaussianBlur\");\n    feGaussianBlur.setAttribute(\"in\", \"SourceAlpha\");\n    feGaussianBlur.setAttribute(\"result\", \"drop_shadow_1\");\n    feGaussianBlur.setAttribute(\"stdDeviation\", \"0\");\n    (this || _global).feGaussianBlur = feGaussianBlur;\n    filter.appendChild(feGaussianBlur);\n    var feOffset = createNS(\"feOffset\");\n    feOffset.setAttribute(\"dx\", \"25\");\n    feOffset.setAttribute(\"dy\", \"0\");\n    feOffset.setAttribute(\"in\", \"drop_shadow_1\");\n    feOffset.setAttribute(\"result\", \"drop_shadow_2\");\n    (this || _global).feOffset = feOffset;\n    filter.appendChild(feOffset);\n    var feFlood = createNS(\"feFlood\");\n    feFlood.setAttribute(\"flood-color\", \"#00ff00\");\n    feFlood.setAttribute(\"flood-opacity\", \"1\");\n    feFlood.setAttribute(\"result\", \"drop_shadow_3\");\n    (this || _global).feFlood = feFlood;\n    filter.appendChild(feFlood);\n    var feComposite = createNS(\"feComposite\");\n    feComposite.setAttribute(\"in\", \"drop_shadow_3\");\n    feComposite.setAttribute(\"in2\", \"drop_shadow_2\");\n    feComposite.setAttribute(\"operator\", \"in\");\n    feComposite.setAttribute(\"result\", \"drop_shadow_4\");\n    filter.appendChild(feComposite);\n    var feMerge = createNS(\"feMerge\");\n    filter.appendChild(feMerge);\n    var feMergeNode;\n    feMergeNode = createNS(\"feMergeNode\");\n    feMerge.appendChild(feMergeNode);\n    feMergeNode = createNS(\"feMergeNode\");\n    feMergeNode.setAttribute(\"in\", \"SourceGraphic\");\n    (this || _global).feMergeNode = feMergeNode;\n    (this || _global).feMerge = feMerge;\n    (this || _global).originalNodeAdded = false;\n    feMerge.appendChild(feMergeNode);\n  }\n\n  SVGDropShadowEffect.prototype.renderFrame = function (forceRender) {\n    if (forceRender || (this || _global).filterManager._mdf) {\n      if (forceRender || (this || _global).filterManager.effectElements[4].p._mdf) {\n        (this || _global).feGaussianBlur.setAttribute(\"stdDeviation\", (this || _global).filterManager.effectElements[4].p.v / 4);\n      }\n\n      if (forceRender || (this || _global).filterManager.effectElements[0].p._mdf) {\n        var col = (this || _global).filterManager.effectElements[0].p.v;\n\n        (this || _global).feFlood.setAttribute(\"flood-color\", rgbToHex(Math.round(col[0] * 255), Math.round(col[1] * 255), Math.round(col[2] * 255)));\n      }\n\n      if (forceRender || (this || _global).filterManager.effectElements[1].p._mdf) {\n        (this || _global).feFlood.setAttribute(\"flood-opacity\", (this || _global).filterManager.effectElements[1].p.v / 255);\n      }\n\n      if (forceRender || (this || _global).filterManager.effectElements[2].p._mdf || (this || _global).filterManager.effectElements[3].p._mdf) {\n        var distance = (this || _global).filterManager.effectElements[3].p.v;\n        var angle = ((this || _global).filterManager.effectElements[2].p.v - 90) * degToRads;\n        var x = distance * Math.cos(angle);\n        var y = distance * Math.sin(angle);\n\n        (this || _global).feOffset.setAttribute(\"dx\", x);\n\n        (this || _global).feOffset.setAttribute(\"dy\", y);\n      }\n      /* if(forceRender || this.filterManager.effectElements[5].p._mdf){\r\n              if(this.filterManager.effectElements[5].p.v === 1 && this.originalNodeAdded) {\r\n                  this.feMerge.removeChild(this.feMergeNode);\r\n                  this.originalNodeAdded = false;\r\n              } else if(this.filterManager.effectElements[5].p.v === 0 && !this.originalNodeAdded) {\r\n                  this.feMerge.appendChild(this.feMergeNode);\r\n                  this.originalNodeAdded = true;\r\n              }\r\n          } */\n\n    }\n  };\n  /* global createElementID, createNS */\n\n\n  var _svgMatteSymbols = [];\n\n  function SVGMatte3Effect(filterElem, filterManager, elem) {\n    (this || _global).initialized = false;\n    (this || _global).filterManager = filterManager;\n    (this || _global).filterElem = filterElem;\n    (this || _global).elem = elem;\n    elem.matteElement = createNS(\"g\");\n    elem.matteElement.appendChild(elem.layerElement);\n    elem.matteElement.appendChild(elem.transformedElement);\n    elem.baseElement = elem.matteElement;\n  }\n\n  SVGMatte3Effect.prototype.findSymbol = function (mask) {\n    var i = 0;\n    var len = _svgMatteSymbols.length;\n\n    while (i < len) {\n      if (_svgMatteSymbols[i] === mask) {\n        return _svgMatteSymbols[i];\n      }\n\n      i += 1;\n    }\n\n    return null;\n  };\n\n  SVGMatte3Effect.prototype.replaceInParent = function (mask, symbolId) {\n    var parentNode = mask.layerElement.parentNode;\n\n    if (!parentNode) {\n      return;\n    }\n\n    var children = parentNode.children;\n    var i = 0;\n    var len = children.length;\n\n    while (i < len) {\n      if (children[i] === mask.layerElement) {\n        break;\n      }\n\n      i += 1;\n    }\n\n    var nextChild;\n\n    if (i <= len - 2) {\n      nextChild = children[i + 1];\n    }\n\n    var useElem = createNS(\"use\");\n    useElem.setAttribute(\"href\", \"#\" + symbolId);\n\n    if (nextChild) {\n      parentNode.insertBefore(useElem, nextChild);\n    } else {\n      parentNode.appendChild(useElem);\n    }\n  };\n\n  SVGMatte3Effect.prototype.setElementAsMask = function (elem, mask) {\n    if (!this.findSymbol(mask)) {\n      var symbolId = createElementID();\n      var masker = createNS(\"mask\");\n      masker.setAttribute(\"id\", mask.layerId);\n      masker.setAttribute(\"mask-type\", \"alpha\");\n\n      _svgMatteSymbols.push(mask);\n\n      var defs = elem.globalData.defs;\n      defs.appendChild(masker);\n      var symbol = createNS(\"symbol\");\n      symbol.setAttribute(\"id\", symbolId);\n      this.replaceInParent(mask, symbolId);\n      symbol.appendChild(mask.layerElement);\n      defs.appendChild(symbol);\n      var useElem = createNS(\"use\");\n      useElem.setAttribute(\"href\", \"#\" + symbolId);\n      masker.appendChild(useElem);\n      mask.data.hd = false;\n      mask.show();\n    }\n\n    elem.setMatte(mask.layerId);\n  };\n\n  SVGMatte3Effect.prototype.initialize = function () {\n    var ind = (this || _global).filterManager.effectElements[0].p.v;\n    var elements = (this || _global).elem.comp.elements;\n    var i = 0;\n    var len = elements.length;\n\n    while (i < len) {\n      if (elements[i] && elements[i].data.ind === ind) {\n        this.setElementAsMask((this || _global).elem, elements[i]);\n      }\n\n      i += 1;\n    }\n\n    (this || _global).initialized = true;\n  };\n\n  SVGMatte3Effect.prototype.renderFrame = function () {\n    if (!(this || _global).initialized) {\n      this.initialize();\n    }\n  };\n  /* global createElementID, filtersFactory, SVGTintFilter, SVGFillFilter, SVGStrokeEffect, SVGTritoneFilter,\r\n  SVGProLevelsFilter, SVGDropShadowEffect, SVGMatte3Effect, SVGGaussianBlurEffect, locationHref */\n\n\n  function SVGEffects(elem) {\n    var i;\n    var len = elem.data.ef ? elem.data.ef.length : 0;\n    var filId = createElementID();\n    var fil = filtersFactory.createFilter(filId, true);\n    var count = 0;\n    (this || _global).filters = [];\n    var filterManager;\n\n    for (i = 0; i < len; i += 1) {\n      filterManager = null;\n\n      if (elem.data.ef[i].ty === 20) {\n        count += 1;\n        filterManager = new SVGTintFilter(fil, elem.effectsManager.effectElements[i]);\n      } else if (elem.data.ef[i].ty === 21) {\n        count += 1;\n        filterManager = new SVGFillFilter(fil, elem.effectsManager.effectElements[i]);\n      } else if (elem.data.ef[i].ty === 22) {\n        filterManager = new SVGStrokeEffect(elem, elem.effectsManager.effectElements[i]);\n      } else if (elem.data.ef[i].ty === 23) {\n        count += 1;\n        filterManager = new SVGTritoneFilter(fil, elem.effectsManager.effectElements[i]);\n      } else if (elem.data.ef[i].ty === 24) {\n        count += 1;\n        filterManager = new SVGProLevelsFilter(fil, elem.effectsManager.effectElements[i]);\n      } else if (elem.data.ef[i].ty === 25) {\n        count += 1;\n        filterManager = new SVGDropShadowEffect(fil, elem.effectsManager.effectElements[i]);\n      } else if (elem.data.ef[i].ty === 28) {\n        // count += 1;\n        filterManager = new SVGMatte3Effect(fil, elem.effectsManager.effectElements[i], elem);\n      } else if (elem.data.ef[i].ty === 29) {\n        count += 1;\n        filterManager = new SVGGaussianBlurEffect(fil, elem.effectsManager.effectElements[i]);\n      }\n\n      if (filterManager) {\n        (this || _global).filters.push(filterManager);\n      }\n    }\n\n    if (count) {\n      elem.globalData.defs.appendChild(fil);\n      elem.layerElement.setAttribute(\"filter\", \"url(\" + locationHref + \"#\" + filId + \")\");\n    }\n\n    if ((this || _global).filters.length) {\n      elem.addRenderableComponent(this || _global);\n    }\n  }\n\n  SVGEffects.prototype.renderFrame = function (_isFirstFrame) {\n    var i;\n    var len = (this || _global).filters.length;\n\n    for (i = 0; i < len; i += 1) {\n      (this || _global).filters[i].renderFrame(_isFirstFrame);\n    }\n  };\n  /* global Matrix, createTypedArray */\n\n\n  function CVContextData() {\n    (this || _global).saved = [];\n    (this || _global).cArrPos = 0;\n    (this || _global).cTr = new Matrix();\n    (this || _global).cO = 1;\n    var i;\n    var len = 15;\n    (this || _global).savedOp = createTypedArray(\"float32\", len);\n\n    for (i = 0; i < len; i += 1) {\n      (this || _global).saved[i] = createTypedArray(\"float32\", 16);\n    }\n\n    (this || _global)._length = len;\n  }\n\n  CVContextData.prototype.duplicate = function () {\n    var newLength = (this || _global)._length * 2;\n    var currentSavedOp = (this || _global).savedOp;\n    (this || _global).savedOp = createTypedArray(\"float32\", newLength);\n\n    (this || _global).savedOp.set(currentSavedOp);\n\n    var i = 0;\n\n    for (i = (this || _global)._length; i < newLength; i += 1) {\n      (this || _global).saved[i] = createTypedArray(\"float32\", 16);\n    }\n\n    (this || _global)._length = newLength;\n  };\n\n  CVContextData.prototype.reset = function () {\n    (this || _global).cArrPos = 0;\n\n    (this || _global).cTr.reset();\n\n    (this || _global).cO = 1;\n  };\n  /* global CVEffects, getBlendMode, CVMaskElement, Matrix */\n\n\n  function CVBaseElement() {}\n\n  CVBaseElement.prototype = {\n    createElements: function () {},\n    initRendererElement: function () {},\n    createContainerElements: function () {\n      (this || _global).canvasContext = (this || _global).globalData.canvasContext;\n      (this || _global).renderableEffectsManager = new CVEffects(this || _global);\n    },\n    createContent: function () {},\n    setBlendMode: function () {\n      var globalData = (this || _global).globalData;\n\n      if (globalData.blendMode !== (this || _global).data.bm) {\n        globalData.blendMode = (this || _global).data.bm;\n        var blendModeValue = getBlendMode((this || _global).data.bm);\n        globalData.canvasContext.globalCompositeOperation = blendModeValue;\n      }\n    },\n    createRenderableComponents: function () {\n      (this || _global).maskManager = new CVMaskElement((this || _global).data, this || _global);\n    },\n    hideElement: function () {\n      if (!(this || _global).hidden && (!(this || _global).isInRange || (this || _global).isTransparent)) {\n        (this || _global).hidden = true;\n      }\n    },\n    showElement: function () {\n      if ((this || _global).isInRange && !(this || _global).isTransparent) {\n        (this || _global).hidden = false;\n        (this || _global)._isFirstFrame = true;\n        (this || _global).maskManager._isFirstFrame = true;\n      }\n    },\n    renderFrame: function () {\n      if ((this || _global).hidden || (this || _global).data.hd) {\n        return;\n      }\n\n      this.renderTransform();\n      this.renderRenderable();\n      this.setBlendMode();\n      var forceRealStack = (this || _global).data.ty === 0;\n\n      (this || _global).globalData.renderer.save(forceRealStack);\n\n      (this || _global).globalData.renderer.ctxTransform((this || _global).finalTransform.mat.props);\n\n      (this || _global).globalData.renderer.ctxOpacity((this || _global).finalTransform.mProp.o.v);\n\n      this.renderInnerContent();\n\n      (this || _global).globalData.renderer.restore(forceRealStack);\n\n      if ((this || _global).maskManager.hasMasks) {\n        (this || _global).globalData.renderer.restore(true);\n      }\n\n      if ((this || _global)._isFirstFrame) {\n        (this || _global)._isFirstFrame = false;\n      }\n    },\n    destroy: function () {\n      (this || _global).canvasContext = null;\n      (this || _global).data = null;\n      (this || _global).globalData = null;\n\n      (this || _global).maskManager.destroy();\n    },\n    mHelper: new Matrix()\n  };\n  CVBaseElement.prototype.hide = CVBaseElement.prototype.hideElement;\n  CVBaseElement.prototype.show = CVBaseElement.prototype.showElement;\n  /* global extendPrototype, BaseElement, TransformElement, CVBaseElement,HierarchyElement, FrameElement,\r\n  RenderableElement, SVGShapeElement, IImageElement, createTag */\n\n  function CVImageElement(data, globalData, comp) {\n    (this || _global).assetData = globalData.getAssetData(data.refId);\n    (this || _global).img = globalData.imageLoader.getAsset((this || _global).assetData);\n    this.initElement(data, globalData, comp);\n  }\n\n  extendPrototype([BaseElement, TransformElement, CVBaseElement, HierarchyElement, FrameElement, RenderableElement], CVImageElement);\n  CVImageElement.prototype.initElement = SVGShapeElement.prototype.initElement;\n  CVImageElement.prototype.prepareFrame = IImageElement.prototype.prepareFrame;\n\n  CVImageElement.prototype.createContent = function () {\n    if ((this || _global).img.width && ((this || _global).assetData.w !== (this || _global).img.width || (this || _global).assetData.h !== (this || _global).img.height)) {\n      var canvas = createTag(\"canvas\");\n      canvas.width = (this || _global).assetData.w;\n      canvas.height = (this || _global).assetData.h;\n      var ctx = canvas.getContext(\"2d\");\n      var imgW = (this || _global).img.width;\n      var imgH = (this || _global).img.height;\n      var imgRel = imgW / imgH;\n      var canvasRel = (this || _global).assetData.w / (this || _global).assetData.h;\n      var widthCrop;\n      var heightCrop;\n      var par = (this || _global).assetData.pr || (this || _global).globalData.renderConfig.imagePreserveAspectRatio;\n\n      if (imgRel > canvasRel && par === \"xMidYMid slice\" || imgRel < canvasRel && par !== \"xMidYMid slice\") {\n        heightCrop = imgH;\n        widthCrop = heightCrop * canvasRel;\n      } else {\n        widthCrop = imgW;\n        heightCrop = widthCrop / canvasRel;\n      }\n\n      ctx.drawImage((this || _global).img, (imgW - widthCrop) / 2, (imgH - heightCrop) / 2, widthCrop, heightCrop, 0, 0, (this || _global).assetData.w, (this || _global).assetData.h);\n      (this || _global).img = canvas;\n    }\n  };\n\n  CVImageElement.prototype.renderInnerContent = function () {\n    (this || _global).canvasContext.drawImage((this || _global).img, 0, 0);\n  };\n\n  CVImageElement.prototype.destroy = function () {\n    (this || _global).img = null;\n  };\n  /* global createSizedArray, PropertyFactory, extendPrototype, CanvasRenderer, ICompElement, CVBaseElement */\n\n\n  function CVCompElement(data, globalData, comp) {\n    (this || _global).completeLayers = false;\n    (this || _global).layers = data.layers;\n    (this || _global).pendingElements = [];\n    (this || _global).elements = createSizedArray((this || _global).layers.length);\n    this.initElement(data, globalData, comp);\n    (this || _global).tm = data.tm ? PropertyFactory.getProp(this || _global, data.tm, 0, globalData.frameRate, this || _global) : {\n      _placeholder: true\n    };\n  }\n\n  extendPrototype([CanvasRenderer, ICompElement, CVBaseElement], CVCompElement);\n\n  CVCompElement.prototype.renderInnerContent = function () {\n    var ctx = (this || _global).canvasContext;\n    ctx.beginPath();\n    ctx.moveTo(0, 0);\n    ctx.lineTo((this || _global).data.w, 0);\n    ctx.lineTo((this || _global).data.w, (this || _global).data.h);\n    ctx.lineTo(0, (this || _global).data.h);\n    ctx.lineTo(0, 0);\n    ctx.clip();\n    var i;\n    var len = (this || _global).layers.length;\n\n    for (i = len - 1; i >= 0; i -= 1) {\n      if ((this || _global).completeLayers || (this || _global).elements[i]) {\n        (this || _global).elements[i].renderFrame();\n      }\n    }\n  };\n\n  CVCompElement.prototype.destroy = function () {\n    var i;\n    var len = (this || _global).layers.length;\n\n    for (i = len - 1; i >= 0; i -= 1) {\n      if ((this || _global).elements[i]) {\n        (this || _global).elements[i].destroy();\n      }\n    }\n\n    (this || _global).layers = null;\n    (this || _global).elements = null;\n  };\n  /* global createSizedArray, ShapePropertyFactory, MaskElement */\n\n\n  function CVMaskElement(data, element) {\n    (this || _global).data = data;\n    (this || _global).element = element;\n    (this || _global).masksProperties = (this || _global).data.masksProperties || [];\n    (this || _global).viewData = createSizedArray((this || _global).masksProperties.length);\n    var i;\n    var len = (this || _global).masksProperties.length;\n    var hasMasks = false;\n\n    for (i = 0; i < len; i += 1) {\n      if ((this || _global).masksProperties[i].mode !== \"n\") {\n        hasMasks = true;\n      }\n\n      (this || _global).viewData[i] = ShapePropertyFactory.getShapeProp((this || _global).element, (this || _global).masksProperties[i], 3);\n    }\n\n    (this || _global).hasMasks = hasMasks;\n\n    if (hasMasks) {\n      (this || _global).element.addRenderableComponent(this || _global);\n    }\n  }\n\n  CVMaskElement.prototype.renderFrame = function () {\n    if (!(this || _global).hasMasks) {\n      return;\n    }\n\n    var transform = (this || _global).element.finalTransform.mat;\n    var ctx = (this || _global).element.canvasContext;\n    var i;\n    var len = (this || _global).masksProperties.length;\n    var pt;\n    var pts;\n    var data;\n    ctx.beginPath();\n\n    for (i = 0; i < len; i += 1) {\n      if ((this || _global).masksProperties[i].mode !== \"n\") {\n        if ((this || _global).masksProperties[i].inv) {\n          ctx.moveTo(0, 0);\n          ctx.lineTo((this || _global).element.globalData.compSize.w, 0);\n          ctx.lineTo((this || _global).element.globalData.compSize.w, (this || _global).element.globalData.compSize.h);\n          ctx.lineTo(0, (this || _global).element.globalData.compSize.h);\n          ctx.lineTo(0, 0);\n        }\n\n        data = (this || _global).viewData[i].v;\n        pt = transform.applyToPointArray(data.v[0][0], data.v[0][1], 0);\n        ctx.moveTo(pt[0], pt[1]);\n        var j;\n        var jLen = data._length;\n\n        for (j = 1; j < jLen; j += 1) {\n          pts = transform.applyToTriplePoints(data.o[j - 1], data.i[j], data.v[j]);\n          ctx.bezierCurveTo(pts[0], pts[1], pts[2], pts[3], pts[4], pts[5]);\n        }\n\n        pts = transform.applyToTriplePoints(data.o[j - 1], data.i[0], data.v[0]);\n        ctx.bezierCurveTo(pts[0], pts[1], pts[2], pts[3], pts[4], pts[5]);\n      }\n    }\n\n    (this || _global).element.globalData.renderer.save(true);\n\n    ctx.clip();\n  };\n\n  CVMaskElement.prototype.getMaskProperty = MaskElement.prototype.getMaskProperty;\n\n  CVMaskElement.prototype.destroy = function () {\n    (this || _global).element = null;\n  };\n  /* global ShapeTransformManager, extendPrototype, BaseElement, TransformElement, CVBaseElement, IShapeElement,\r\n  HierarchyElement, FrameElement, RenderableElement, RenderableDOMElement, PropertyFactory, degToRads, GradientProperty,\r\n  DashProperty, TransformPropertyFactory, CVShapeData, ShapeModifiers, bmFloor */\n\n\n  function CVShapeElement(data, globalData, comp) {\n    (this || _global).shapes = [];\n    (this || _global).shapesData = data.shapes;\n    (this || _global).stylesList = [];\n    (this || _global).itemsData = [];\n    (this || _global).prevViewData = [];\n    (this || _global).shapeModifiers = [];\n    (this || _global).processedElements = [];\n    (this || _global).transformsManager = new ShapeTransformManager();\n    this.initElement(data, globalData, comp);\n  }\n\n  extendPrototype([BaseElement, TransformElement, CVBaseElement, IShapeElement, HierarchyElement, FrameElement, RenderableElement], CVShapeElement);\n  CVShapeElement.prototype.initElement = RenderableDOMElement.prototype.initElement;\n  CVShapeElement.prototype.transformHelper = {\n    opacity: 1,\n    _opMdf: false\n  };\n  CVShapeElement.prototype.dashResetter = [];\n\n  CVShapeElement.prototype.createContent = function () {\n    this.searchShapes((this || _global).shapesData, (this || _global).itemsData, (this || _global).prevViewData, true, []);\n  };\n\n  CVShapeElement.prototype.createStyleElement = function (data, transforms) {\n    var styleElem = {\n      data: data,\n      type: data.ty,\n      preTransforms: (this || _global).transformsManager.addTransformSequence(transforms),\n      transforms: [],\n      elements: [],\n      closed: data.hd === true\n    };\n    var elementData = {};\n\n    if (data.ty === \"fl\" || data.ty === \"st\") {\n      elementData.c = PropertyFactory.getProp(this || _global, data.c, 1, 255, this || _global);\n\n      if (!elementData.c.k) {\n        styleElem.co = \"rgb(\" + bmFloor(elementData.c.v[0]) + \",\" + bmFloor(elementData.c.v[1]) + \",\" + bmFloor(elementData.c.v[2]) + \")\";\n      }\n    } else if (data.ty === \"gf\" || data.ty === \"gs\") {\n      elementData.s = PropertyFactory.getProp(this || _global, data.s, 1, null, this || _global);\n      elementData.e = PropertyFactory.getProp(this || _global, data.e, 1, null, this || _global);\n      elementData.h = PropertyFactory.getProp(this || _global, data.h || {\n        k: 0\n      }, 0, 0.01, this || _global);\n      elementData.a = PropertyFactory.getProp(this || _global, data.a || {\n        k: 0\n      }, 0, degToRads, this || _global);\n      elementData.g = new GradientProperty(this || _global, data.g, this || _global);\n    }\n\n    elementData.o = PropertyFactory.getProp(this || _global, data.o, 0, 0.01, this || _global);\n\n    if (data.ty === \"st\" || data.ty === \"gs\") {\n      styleElem.lc = (this || _global).lcEnum[data.lc] || \"round\";\n      styleElem.lj = (this || _global).ljEnum[data.lj] || \"round\";\n\n      if (data.lj == 1) {\n        // eslint-disable-line eqeqeq\n        styleElem.ml = data.ml;\n      }\n\n      elementData.w = PropertyFactory.getProp(this || _global, data.w, 0, null, this || _global);\n\n      if (!elementData.w.k) {\n        styleElem.wi = elementData.w.v;\n      }\n\n      if (data.d) {\n        var d = new DashProperty(this || _global, data.d, \"canvas\", this || _global);\n        elementData.d = d;\n\n        if (!elementData.d.k) {\n          styleElem.da = elementData.d.dashArray;\n          styleElem.do = elementData.d.dashoffset[0];\n        }\n      }\n    } else {\n      styleElem.r = data.r === 2 ? \"evenodd\" : \"nonzero\";\n    }\n\n    (this || _global).stylesList.push(styleElem);\n\n    elementData.style = styleElem;\n    return elementData;\n  };\n\n  CVShapeElement.prototype.createGroupElement = function () {\n    var elementData = {\n      it: [],\n      prevViewData: []\n    };\n    return elementData;\n  };\n\n  CVShapeElement.prototype.createTransformElement = function (data) {\n    var elementData = {\n      transform: {\n        opacity: 1,\n        _opMdf: false,\n        key: (this || _global).transformsManager.getNewKey(),\n        op: PropertyFactory.getProp(this || _global, data.o, 0, 0.01, this || _global),\n        mProps: TransformPropertyFactory.getTransformProperty(this || _global, data, this || _global)\n      }\n    };\n    return elementData;\n  };\n\n  CVShapeElement.prototype.createShapeElement = function (data) {\n    var elementData = new CVShapeData(this || _global, data, (this || _global).stylesList, (this || _global).transformsManager);\n\n    (this || _global).shapes.push(elementData);\n\n    this.addShapeToModifiers(elementData);\n    return elementData;\n  };\n\n  CVShapeElement.prototype.reloadShapes = function () {\n    (this || _global)._isFirstFrame = true;\n    var i;\n    var len = (this || _global).itemsData.length;\n\n    for (i = 0; i < len; i += 1) {\n      (this || _global).prevViewData[i] = (this || _global).itemsData[i];\n    }\n\n    this.searchShapes((this || _global).shapesData, (this || _global).itemsData, (this || _global).prevViewData, true, []);\n    len = (this || _global).dynamicProperties.length;\n\n    for (i = 0; i < len; i += 1) {\n      (this || _global).dynamicProperties[i].getValue();\n    }\n\n    this.renderModifiers();\n\n    (this || _global).transformsManager.processSequences((this || _global)._isFirstFrame);\n  };\n\n  CVShapeElement.prototype.addTransformToStyleList = function (transform) {\n    var i;\n    var len = (this || _global).stylesList.length;\n\n    for (i = 0; i < len; i += 1) {\n      if (!(this || _global).stylesList[i].closed) {\n        (this || _global).stylesList[i].transforms.push(transform);\n      }\n    }\n  };\n\n  CVShapeElement.prototype.removeTransformFromStyleList = function () {\n    var i;\n    var len = (this || _global).stylesList.length;\n\n    for (i = 0; i < len; i += 1) {\n      if (!(this || _global).stylesList[i].closed) {\n        (this || _global).stylesList[i].transforms.pop();\n      }\n    }\n  };\n\n  CVShapeElement.prototype.closeStyles = function (styles) {\n    var i;\n    var len = styles.length;\n\n    for (i = 0; i < len; i += 1) {\n      styles[i].closed = true;\n    }\n  };\n\n  CVShapeElement.prototype.searchShapes = function (arr, itemsData, prevViewData, shouldRender, transforms) {\n    var i;\n    var len = arr.length - 1;\n    var j;\n    var jLen;\n    var ownStyles = [];\n    var ownModifiers = [];\n    var processedPos;\n    var modifier;\n    var currentTransform;\n    var ownTransforms = [].concat(transforms);\n\n    for (i = len; i >= 0; i -= 1) {\n      processedPos = this.searchProcessedElement(arr[i]);\n\n      if (!processedPos) {\n        arr[i]._shouldRender = shouldRender;\n      } else {\n        itemsData[i] = prevViewData[processedPos - 1];\n      }\n\n      if (arr[i].ty === \"fl\" || arr[i].ty === \"st\" || arr[i].ty === \"gf\" || arr[i].ty === \"gs\") {\n        if (!processedPos) {\n          itemsData[i] = this.createStyleElement(arr[i], ownTransforms);\n        } else {\n          itemsData[i].style.closed = false;\n        }\n\n        ownStyles.push(itemsData[i].style);\n      } else if (arr[i].ty === \"gr\") {\n        if (!processedPos) {\n          itemsData[i] = this.createGroupElement(arr[i]);\n        } else {\n          jLen = itemsData[i].it.length;\n\n          for (j = 0; j < jLen; j += 1) {\n            itemsData[i].prevViewData[j] = itemsData[i].it[j];\n          }\n        }\n\n        this.searchShapes(arr[i].it, itemsData[i].it, itemsData[i].prevViewData, shouldRender, ownTransforms);\n      } else if (arr[i].ty === \"tr\") {\n        if (!processedPos) {\n          currentTransform = this.createTransformElement(arr[i]);\n          itemsData[i] = currentTransform;\n        }\n\n        ownTransforms.push(itemsData[i]);\n        this.addTransformToStyleList(itemsData[i]);\n      } else if (arr[i].ty === \"sh\" || arr[i].ty === \"rc\" || arr[i].ty === \"el\" || arr[i].ty === \"sr\") {\n        if (!processedPos) {\n          itemsData[i] = this.createShapeElement(arr[i]);\n        }\n      } else if (arr[i].ty === \"tm\" || arr[i].ty === \"rd\" || arr[i].ty === \"pb\") {\n        if (!processedPos) {\n          modifier = ShapeModifiers.getModifier(arr[i].ty);\n          modifier.init(this || _global, arr[i]);\n          itemsData[i] = modifier;\n\n          (this || _global).shapeModifiers.push(modifier);\n        } else {\n          modifier = itemsData[i];\n          modifier.closed = false;\n        }\n\n        ownModifiers.push(modifier);\n      } else if (arr[i].ty === \"rp\") {\n        if (!processedPos) {\n          modifier = ShapeModifiers.getModifier(arr[i].ty);\n          itemsData[i] = modifier;\n          modifier.init(this || _global, arr, i, itemsData);\n\n          (this || _global).shapeModifiers.push(modifier);\n\n          shouldRender = false;\n        } else {\n          modifier = itemsData[i];\n          modifier.closed = true;\n        }\n\n        ownModifiers.push(modifier);\n      }\n\n      this.addProcessedElement(arr[i], i + 1);\n    }\n\n    this.removeTransformFromStyleList();\n    this.closeStyles(ownStyles);\n    len = ownModifiers.length;\n\n    for (i = 0; i < len; i += 1) {\n      ownModifiers[i].closed = true;\n    }\n  };\n\n  CVShapeElement.prototype.renderInnerContent = function () {\n    (this || _global).transformHelper.opacity = 1;\n    (this || _global).transformHelper._opMdf = false;\n    this.renderModifiers();\n\n    (this || _global).transformsManager.processSequences((this || _global)._isFirstFrame);\n\n    this.renderShape((this || _global).transformHelper, (this || _global).shapesData, (this || _global).itemsData, true);\n  };\n\n  CVShapeElement.prototype.renderShapeTransform = function (parentTransform, groupTransform) {\n    if (parentTransform._opMdf || groupTransform.op._mdf || (this || _global)._isFirstFrame) {\n      groupTransform.opacity = parentTransform.opacity;\n      groupTransform.opacity *= groupTransform.op.v;\n      groupTransform._opMdf = true;\n    }\n  };\n\n  CVShapeElement.prototype.drawLayer = function () {\n    var i;\n    var len = (this || _global).stylesList.length;\n    var j;\n    var jLen;\n    var k;\n    var kLen;\n    var elems;\n    var nodes;\n    var renderer = (this || _global).globalData.renderer;\n    var ctx = (this || _global).globalData.canvasContext;\n    var type;\n    var currentStyle;\n\n    for (i = 0; i < len; i += 1) {\n      currentStyle = (this || _global).stylesList[i];\n      type = currentStyle.type; // Skipping style when\n      // Stroke width equals 0\n      // style should not be rendered (extra unused repeaters)\n      // current opacity equals 0\n      // global opacity equals 0\n\n      if (!((type === \"st\" || type === \"gs\") && currentStyle.wi === 0 || !currentStyle.data._shouldRender || currentStyle.coOp === 0 || (this || _global).globalData.currentGlobalAlpha === 0)) {\n        renderer.save();\n        elems = currentStyle.elements;\n\n        if (type === \"st\" || type === \"gs\") {\n          ctx.strokeStyle = type === \"st\" ? currentStyle.co : currentStyle.grd;\n          ctx.lineWidth = currentStyle.wi;\n          ctx.lineCap = currentStyle.lc;\n          ctx.lineJoin = currentStyle.lj;\n          ctx.miterLimit = currentStyle.ml || 0;\n        } else {\n          ctx.fillStyle = type === \"fl\" ? currentStyle.co : currentStyle.grd;\n        }\n\n        renderer.ctxOpacity(currentStyle.coOp);\n\n        if (type !== \"st\" && type !== \"gs\") {\n          ctx.beginPath();\n        }\n\n        renderer.ctxTransform(currentStyle.preTransforms.finalTransform.props);\n        jLen = elems.length;\n\n        for (j = 0; j < jLen; j += 1) {\n          if (type === \"st\" || type === \"gs\") {\n            ctx.beginPath();\n\n            if (currentStyle.da) {\n              ctx.setLineDash(currentStyle.da);\n              ctx.lineDashOffset = currentStyle.do;\n            }\n          }\n\n          nodes = elems[j].trNodes;\n          kLen = nodes.length;\n\n          for (k = 0; k < kLen; k += 1) {\n            if (nodes[k].t === \"m\") {\n              ctx.moveTo(nodes[k].p[0], nodes[k].p[1]);\n            } else if (nodes[k].t === \"c\") {\n              ctx.bezierCurveTo(nodes[k].pts[0], nodes[k].pts[1], nodes[k].pts[2], nodes[k].pts[3], nodes[k].pts[4], nodes[k].pts[5]);\n            } else {\n              ctx.closePath();\n            }\n          }\n\n          if (type === \"st\" || type === \"gs\") {\n            ctx.stroke();\n\n            if (currentStyle.da) {\n              ctx.setLineDash((this || _global).dashResetter);\n            }\n          }\n        }\n\n        if (type !== \"st\" && type !== \"gs\") {\n          ctx.fill(currentStyle.r);\n        }\n\n        renderer.restore();\n      }\n    }\n  };\n\n  CVShapeElement.prototype.renderShape = function (parentTransform, items, data, isMain) {\n    var i;\n    var len = items.length - 1;\n    var groupTransform;\n    groupTransform = parentTransform;\n\n    for (i = len; i >= 0; i -= 1) {\n      if (items[i].ty === \"tr\") {\n        groupTransform = data[i].transform;\n        this.renderShapeTransform(parentTransform, groupTransform);\n      } else if (items[i].ty === \"sh\" || items[i].ty === \"el\" || items[i].ty === \"rc\" || items[i].ty === \"sr\") {\n        this.renderPath(items[i], data[i]);\n      } else if (items[i].ty === \"fl\") {\n        this.renderFill(items[i], data[i], groupTransform);\n      } else if (items[i].ty === \"st\") {\n        this.renderStroke(items[i], data[i], groupTransform);\n      } else if (items[i].ty === \"gf\" || items[i].ty === \"gs\") {\n        this.renderGradientFill(items[i], data[i], groupTransform);\n      } else if (items[i].ty === \"gr\") {\n        this.renderShape(groupTransform, items[i].it, data[i].it);\n      } else if (items[i].ty === \"tm\") {//\n      }\n    }\n\n    if (isMain) {\n      this.drawLayer();\n    }\n  };\n\n  CVShapeElement.prototype.renderStyledShape = function (styledShape, shape) {\n    if ((this || _global)._isFirstFrame || shape._mdf || styledShape.transforms._mdf) {\n      var shapeNodes = styledShape.trNodes;\n      var paths = shape.paths;\n      var i;\n      var len;\n      var j;\n      var jLen = paths._length;\n      shapeNodes.length = 0;\n      var groupTransformMat = styledShape.transforms.finalTransform;\n\n      for (j = 0; j < jLen; j += 1) {\n        var pathNodes = paths.shapes[j];\n\n        if (pathNodes && pathNodes.v) {\n          len = pathNodes._length;\n\n          for (i = 1; i < len; i += 1) {\n            if (i === 1) {\n              shapeNodes.push({\n                t: \"m\",\n                p: groupTransformMat.applyToPointArray(pathNodes.v[0][0], pathNodes.v[0][1], 0)\n              });\n            }\n\n            shapeNodes.push({\n              t: \"c\",\n              pts: groupTransformMat.applyToTriplePoints(pathNodes.o[i - 1], pathNodes.i[i], pathNodes.v[i])\n            });\n          }\n\n          if (len === 1) {\n            shapeNodes.push({\n              t: \"m\",\n              p: groupTransformMat.applyToPointArray(pathNodes.v[0][0], pathNodes.v[0][1], 0)\n            });\n          }\n\n          if (pathNodes.c && len) {\n            shapeNodes.push({\n              t: \"c\",\n              pts: groupTransformMat.applyToTriplePoints(pathNodes.o[i - 1], pathNodes.i[0], pathNodes.v[0])\n            });\n            shapeNodes.push({\n              t: \"z\"\n            });\n          }\n        }\n      }\n\n      styledShape.trNodes = shapeNodes;\n    }\n  };\n\n  CVShapeElement.prototype.renderPath = function (pathData, itemData) {\n    if (pathData.hd !== true && pathData._shouldRender) {\n      var i;\n      var len = itemData.styledShapes.length;\n\n      for (i = 0; i < len; i += 1) {\n        this.renderStyledShape(itemData.styledShapes[i], itemData.sh);\n      }\n    }\n  };\n\n  CVShapeElement.prototype.renderFill = function (styleData, itemData, groupTransform) {\n    var styleElem = itemData.style;\n\n    if (itemData.c._mdf || (this || _global)._isFirstFrame) {\n      styleElem.co = \"rgb(\" + bmFloor(itemData.c.v[0]) + \",\" + bmFloor(itemData.c.v[1]) + \",\" + bmFloor(itemData.c.v[2]) + \")\";\n    }\n\n    if (itemData.o._mdf || groupTransform._opMdf || (this || _global)._isFirstFrame) {\n      styleElem.coOp = itemData.o.v * groupTransform.opacity;\n    }\n  };\n\n  CVShapeElement.prototype.renderGradientFill = function (styleData, itemData, groupTransform) {\n    var styleElem = itemData.style;\n    var grd;\n\n    if (!styleElem.grd || itemData.g._mdf || itemData.s._mdf || itemData.e._mdf || styleData.t !== 1 && (itemData.h._mdf || itemData.a._mdf)) {\n      var ctx = (this || _global).globalData.canvasContext;\n      var pt1 = itemData.s.v;\n      var pt2 = itemData.e.v;\n\n      if (styleData.t === 1) {\n        grd = ctx.createLinearGradient(pt1[0], pt1[1], pt2[0], pt2[1]);\n      } else {\n        var rad = Math.sqrt(Math.pow(pt1[0] - pt2[0], 2) + Math.pow(pt1[1] - pt2[1], 2));\n        var ang = Math.atan2(pt2[1] - pt1[1], pt2[0] - pt1[0]);\n        var percent = itemData.h.v;\n\n        if (percent >= 1) {\n          percent = 0.99;\n        } else if (percent <= -1) {\n          percent = -0.99;\n        }\n\n        var dist = rad * percent;\n        var x = Math.cos(ang + itemData.a.v) * dist + pt1[0];\n        var y = Math.sin(ang + itemData.a.v) * dist + pt1[1];\n        grd = ctx.createRadialGradient(x, y, 0, pt1[0], pt1[1], rad);\n      }\n\n      var i;\n      var len = styleData.g.p;\n      var cValues = itemData.g.c;\n      var opacity = 1;\n\n      for (i = 0; i < len; i += 1) {\n        if (itemData.g._hasOpacity && itemData.g._collapsable) {\n          opacity = itemData.g.o[i * 2 + 1];\n        }\n\n        grd.addColorStop(cValues[i * 4] / 100, \"rgba(\" + cValues[i * 4 + 1] + \",\" + cValues[i * 4 + 2] + \",\" + cValues[i * 4 + 3] + \",\" + opacity + \")\");\n      }\n\n      styleElem.grd = grd;\n    }\n\n    styleElem.coOp = itemData.o.v * groupTransform.opacity;\n  };\n\n  CVShapeElement.prototype.renderStroke = function (styleData, itemData, groupTransform) {\n    var styleElem = itemData.style;\n    var d = itemData.d;\n\n    if (d && (d._mdf || (this || _global)._isFirstFrame)) {\n      styleElem.da = d.dashArray;\n      styleElem.do = d.dashoffset[0];\n    }\n\n    if (itemData.c._mdf || (this || _global)._isFirstFrame) {\n      styleElem.co = \"rgb(\" + bmFloor(itemData.c.v[0]) + \",\" + bmFloor(itemData.c.v[1]) + \",\" + bmFloor(itemData.c.v[2]) + \")\";\n    }\n\n    if (itemData.o._mdf || groupTransform._opMdf || (this || _global)._isFirstFrame) {\n      styleElem.coOp = itemData.o.v * groupTransform.opacity;\n    }\n\n    if (itemData.w._mdf || (this || _global)._isFirstFrame) {\n      styleElem.wi = itemData.w.v;\n    }\n  };\n\n  CVShapeElement.prototype.destroy = function () {\n    (this || _global).shapesData = null;\n    (this || _global).globalData = null;\n    (this || _global).canvasContext = null;\n    (this || _global).stylesList.length = 0;\n    (this || _global).itemsData.length = 0;\n  };\n  /* global extendPrototype, BaseElement, TransformElement, CVBaseElement, HierarchyElement, FrameElement, RenderableElement,\r\n  SVGShapeElement, IImageElement */\n\n\n  function CVSolidElement(data, globalData, comp) {\n    this.initElement(data, globalData, comp);\n  }\n\n  extendPrototype([BaseElement, TransformElement, CVBaseElement, HierarchyElement, FrameElement, RenderableElement], CVSolidElement);\n  CVSolidElement.prototype.initElement = SVGShapeElement.prototype.initElement;\n  CVSolidElement.prototype.prepareFrame = IImageElement.prototype.prepareFrame;\n\n  CVSolidElement.prototype.renderInnerContent = function () {\n    var ctx = (this || _global).canvasContext;\n    ctx.fillStyle = (this || _global).data.sc;\n    ctx.fillRect(0, 0, (this || _global).data.sw, (this || _global).data.sh); //\n  };\n  /* global extendPrototype, BaseElement, TransformElement, CVBaseElement, HierarchyElement, FrameElement,\r\n  RenderableElement, ITextElement, createTag, createSizedArray */\n\n\n  function CVTextElement(data, globalData, comp) {\n    (this || _global).textSpans = [];\n    (this || _global).yOffset = 0;\n    (this || _global).fillColorAnim = false;\n    (this || _global).strokeColorAnim = false;\n    (this || _global).strokeWidthAnim = false;\n    (this || _global).stroke = false;\n    (this || _global).fill = false;\n    (this || _global).justifyOffset = 0;\n    (this || _global).currentRender = null;\n    (this || _global).renderType = \"canvas\";\n    (this || _global).values = {\n      fill: \"rgba(0,0,0,0)\",\n      stroke: \"rgba(0,0,0,0)\",\n      sWidth: 0,\n      fValue: \"\"\n    };\n    this.initElement(data, globalData, comp);\n  }\n\n  extendPrototype([BaseElement, TransformElement, CVBaseElement, HierarchyElement, FrameElement, RenderableElement, ITextElement], CVTextElement);\n  CVTextElement.prototype.tHelper = createTag(\"canvas\").getContext(\"2d\");\n\n  CVTextElement.prototype.buildNewText = function () {\n    var documentData = (this || _global).textProperty.currentData;\n    (this || _global).renderedLetters = createSizedArray(documentData.l ? documentData.l.length : 0);\n    var hasFill = false;\n\n    if (documentData.fc) {\n      hasFill = true;\n      (this || _global).values.fill = this.buildColor(documentData.fc);\n    } else {\n      (this || _global).values.fill = \"rgba(0,0,0,0)\";\n    }\n\n    (this || _global).fill = hasFill;\n    var hasStroke = false;\n\n    if (documentData.sc) {\n      hasStroke = true;\n      (this || _global).values.stroke = this.buildColor(documentData.sc);\n      (this || _global).values.sWidth = documentData.sw;\n    }\n\n    var fontData = (this || _global).globalData.fontManager.getFontByName(documentData.f);\n\n    var i;\n    var len;\n    var letters = documentData.l;\n    var matrixHelper = (this || _global).mHelper;\n    (this || _global).stroke = hasStroke;\n    (this || _global).values.fValue = documentData.finalSize + \"px \" + (this || _global).globalData.fontManager.getFontByName(documentData.f).fFamily;\n    len = documentData.finalText.length; // this.tHelper.font = this.values.fValue;\n\n    var charData;\n    var shapeData;\n    var k;\n    var kLen;\n    var shapes;\n    var j;\n    var jLen;\n    var pathNodes;\n    var commands;\n    var pathArr;\n    var singleShape = (this || _global).data.singleShape;\n    var trackingOffset = documentData.tr * 0.001 * documentData.finalSize;\n    var xPos = 0;\n    var yPos = 0;\n    var firstLine = true;\n    var cnt = 0;\n\n    for (i = 0; i < len; i += 1) {\n      charData = (this || _global).globalData.fontManager.getCharData(documentData.finalText[i], fontData.fStyle, (this || _global).globalData.fontManager.getFontByName(documentData.f).fFamily);\n      shapeData = charData && charData.data || {};\n      matrixHelper.reset();\n\n      if (singleShape && letters[i].n) {\n        xPos = -trackingOffset;\n        yPos += documentData.yOffset;\n        yPos += firstLine ? 1 : 0;\n        firstLine = false;\n      }\n\n      shapes = shapeData.shapes ? shapeData.shapes[0].it : [];\n      jLen = shapes.length;\n      matrixHelper.scale(documentData.finalSize / 100, documentData.finalSize / 100);\n\n      if (singleShape) {\n        this.applyTextPropertiesToMatrix(documentData, matrixHelper, letters[i].line, xPos, yPos);\n      }\n\n      commands = createSizedArray(jLen);\n\n      for (j = 0; j < jLen; j += 1) {\n        kLen = shapes[j].ks.k.i.length;\n        pathNodes = shapes[j].ks.k;\n        pathArr = [];\n\n        for (k = 1; k < kLen; k += 1) {\n          if (k === 1) {\n            pathArr.push(matrixHelper.applyToX(pathNodes.v[0][0], pathNodes.v[0][1], 0), matrixHelper.applyToY(pathNodes.v[0][0], pathNodes.v[0][1], 0));\n          }\n\n          pathArr.push(matrixHelper.applyToX(pathNodes.o[k - 1][0], pathNodes.o[k - 1][1], 0), matrixHelper.applyToY(pathNodes.o[k - 1][0], pathNodes.o[k - 1][1], 0), matrixHelper.applyToX(pathNodes.i[k][0], pathNodes.i[k][1], 0), matrixHelper.applyToY(pathNodes.i[k][0], pathNodes.i[k][1], 0), matrixHelper.applyToX(pathNodes.v[k][0], pathNodes.v[k][1], 0), matrixHelper.applyToY(pathNodes.v[k][0], pathNodes.v[k][1], 0));\n        }\n\n        pathArr.push(matrixHelper.applyToX(pathNodes.o[k - 1][0], pathNodes.o[k - 1][1], 0), matrixHelper.applyToY(pathNodes.o[k - 1][0], pathNodes.o[k - 1][1], 0), matrixHelper.applyToX(pathNodes.i[0][0], pathNodes.i[0][1], 0), matrixHelper.applyToY(pathNodes.i[0][0], pathNodes.i[0][1], 0), matrixHelper.applyToX(pathNodes.v[0][0], pathNodes.v[0][1], 0), matrixHelper.applyToY(pathNodes.v[0][0], pathNodes.v[0][1], 0));\n        commands[j] = pathArr;\n      }\n\n      if (singleShape) {\n        xPos += letters[i].l;\n        xPos += trackingOffset;\n      }\n\n      if ((this || _global).textSpans[cnt]) {\n        (this || _global).textSpans[cnt].elem = commands;\n      } else {\n        (this || _global).textSpans[cnt] = {\n          elem: commands\n        };\n      }\n\n      cnt += 1;\n    }\n  };\n\n  CVTextElement.prototype.renderInnerContent = function () {\n    var ctx = (this || _global).canvasContext;\n    ctx.font = (this || _global).values.fValue;\n    ctx.lineCap = \"butt\";\n    ctx.lineJoin = \"miter\";\n    ctx.miterLimit = 4;\n\n    if (!(this || _global).data.singleShape) {\n      (this || _global).textAnimator.getMeasures((this || _global).textProperty.currentData, (this || _global).lettersChangedFlag);\n    }\n\n    var i;\n    var len;\n    var j;\n    var jLen;\n    var k;\n    var kLen;\n    var renderedLetters = (this || _global).textAnimator.renderedLetters;\n    var letters = (this || _global).textProperty.currentData.l;\n    len = letters.length;\n    var renderedLetter;\n    var lastFill = null;\n    var lastStroke = null;\n    var lastStrokeW = null;\n    var commands;\n    var pathArr;\n\n    for (i = 0; i < len; i += 1) {\n      if (!letters[i].n) {\n        renderedLetter = renderedLetters[i];\n\n        if (renderedLetter) {\n          (this || _global).globalData.renderer.save();\n\n          (this || _global).globalData.renderer.ctxTransform(renderedLetter.p);\n\n          (this || _global).globalData.renderer.ctxOpacity(renderedLetter.o);\n        }\n\n        if ((this || _global).fill) {\n          if (renderedLetter && renderedLetter.fc) {\n            if (lastFill !== renderedLetter.fc) {\n              lastFill = renderedLetter.fc;\n              ctx.fillStyle = renderedLetter.fc;\n            }\n          } else if (lastFill !== (this || _global).values.fill) {\n            lastFill = (this || _global).values.fill;\n            ctx.fillStyle = (this || _global).values.fill;\n          }\n\n          commands = (this || _global).textSpans[i].elem;\n          jLen = commands.length;\n\n          (this || _global).globalData.canvasContext.beginPath();\n\n          for (j = 0; j < jLen; j += 1) {\n            pathArr = commands[j];\n            kLen = pathArr.length;\n\n            (this || _global).globalData.canvasContext.moveTo(pathArr[0], pathArr[1]);\n\n            for (k = 2; k < kLen; k += 6) {\n              (this || _global).globalData.canvasContext.bezierCurveTo(pathArr[k], pathArr[k + 1], pathArr[k + 2], pathArr[k + 3], pathArr[k + 4], pathArr[k + 5]);\n            }\n          }\n\n          (this || _global).globalData.canvasContext.closePath();\n\n          (this || _global).globalData.canvasContext.fill(); /// ctx.fillText(this.textSpans[i].val,0,0);\n\n        }\n\n        if ((this || _global).stroke) {\n          if (renderedLetter && renderedLetter.sw) {\n            if (lastStrokeW !== renderedLetter.sw) {\n              lastStrokeW = renderedLetter.sw;\n              ctx.lineWidth = renderedLetter.sw;\n            }\n          } else if (lastStrokeW !== (this || _global).values.sWidth) {\n            lastStrokeW = (this || _global).values.sWidth;\n            ctx.lineWidth = (this || _global).values.sWidth;\n          }\n\n          if (renderedLetter && renderedLetter.sc) {\n            if (lastStroke !== renderedLetter.sc) {\n              lastStroke = renderedLetter.sc;\n              ctx.strokeStyle = renderedLetter.sc;\n            }\n          } else if (lastStroke !== (this || _global).values.stroke) {\n            lastStroke = (this || _global).values.stroke;\n            ctx.strokeStyle = (this || _global).values.stroke;\n          }\n\n          commands = (this || _global).textSpans[i].elem;\n          jLen = commands.length;\n\n          (this || _global).globalData.canvasContext.beginPath();\n\n          for (j = 0; j < jLen; j += 1) {\n            pathArr = commands[j];\n            kLen = pathArr.length;\n\n            (this || _global).globalData.canvasContext.moveTo(pathArr[0], pathArr[1]);\n\n            for (k = 2; k < kLen; k += 6) {\n              (this || _global).globalData.canvasContext.bezierCurveTo(pathArr[k], pathArr[k + 1], pathArr[k + 2], pathArr[k + 3], pathArr[k + 4], pathArr[k + 5]);\n            }\n          }\n\n          (this || _global).globalData.canvasContext.closePath();\n\n          (this || _global).globalData.canvasContext.stroke(); /// ctx.strokeText(letters[i].val,0,0);\n\n        }\n\n        if (renderedLetter) {\n          (this || _global).globalData.renderer.restore();\n        }\n      }\n    }\n  };\n\n  function CVEffects() {}\n\n  CVEffects.prototype.renderFrame = function () {};\n  /* global createTag, createNS, styleDiv, CVEffects, MaskElement, SVGBaseElement, HybridRenderer */\n\n\n  function HBaseElement() {}\n\n  HBaseElement.prototype = {\n    checkBlendMode: function () {},\n    initRendererElement: function () {\n      (this || _global).baseElement = createTag((this || _global).data.tg || \"div\");\n\n      if ((this || _global).data.hasMask) {\n        (this || _global).svgElement = createNS(\"svg\");\n        (this || _global).layerElement = createNS(\"g\");\n        (this || _global).maskedElement = (this || _global).layerElement;\n\n        (this || _global).svgElement.appendChild((this || _global).layerElement);\n\n        (this || _global).baseElement.appendChild((this || _global).svgElement);\n      } else {\n        (this || _global).layerElement = (this || _global).baseElement;\n      }\n\n      styleDiv((this || _global).baseElement);\n    },\n    createContainerElements: function () {\n      (this || _global).renderableEffectsManager = new CVEffects(this || _global);\n      (this || _global).transformedElement = (this || _global).baseElement;\n      (this || _global).maskedElement = (this || _global).layerElement;\n\n      if ((this || _global).data.ln) {\n        (this || _global).layerElement.setAttribute(\"id\", (this || _global).data.ln);\n      }\n\n      if ((this || _global).data.cl) {\n        (this || _global).layerElement.setAttribute(\"class\", (this || _global).data.cl);\n      }\n\n      if ((this || _global).data.bm !== 0) {\n        this.setBlendMode();\n      }\n    },\n    renderElement: function () {\n      var transformedElementStyle = (this || _global).transformedElement ? (this || _global).transformedElement.style : {};\n\n      if ((this || _global).finalTransform._matMdf) {\n        var matrixValue = (this || _global).finalTransform.mat.toCSS();\n\n        transformedElementStyle.transform = matrixValue;\n        transformedElementStyle.webkitTransform = matrixValue;\n      }\n\n      if ((this || _global).finalTransform._opMdf) {\n        transformedElementStyle.opacity = (this || _global).finalTransform.mProp.o.v;\n      }\n    },\n    renderFrame: function () {\n      // If it is exported as hidden (data.hd === true) no need to render\n      // If it is not visible no need to render\n      if ((this || _global).data.hd || (this || _global).hidden) {\n        return;\n      }\n\n      this.renderTransform();\n      this.renderRenderable();\n      this.renderElement();\n      this.renderInnerContent();\n\n      if ((this || _global)._isFirstFrame) {\n        (this || _global)._isFirstFrame = false;\n      }\n    },\n    destroy: function () {\n      (this || _global).layerElement = null;\n      (this || _global).transformedElement = null;\n\n      if ((this || _global).matteElement) {\n        (this || _global).matteElement = null;\n      }\n\n      if ((this || _global).maskManager) {\n        (this || _global).maskManager.destroy();\n\n        (this || _global).maskManager = null;\n      }\n    },\n    createRenderableComponents: function () {\n      (this || _global).maskManager = new MaskElement((this || _global).data, this || _global, (this || _global).globalData);\n    },\n    addEffects: function () {},\n    setMatte: function () {}\n  };\n  HBaseElement.prototype.getBaseElement = SVGBaseElement.prototype.getBaseElement;\n  HBaseElement.prototype.destroyBaseElement = HBaseElement.prototype.destroy;\n  HBaseElement.prototype.buildElementParenting = HybridRenderer.prototype.buildElementParenting;\n  /* global extendPrototype, BaseElement, TransformElement, HBaseElement, HierarchyElement, FrameElement,\r\n  RenderableDOMElement, createNS, createTag */\n\n  function HSolidElement(data, globalData, comp) {\n    this.initElement(data, globalData, comp);\n  }\n\n  extendPrototype([BaseElement, TransformElement, HBaseElement, HierarchyElement, FrameElement, RenderableDOMElement], HSolidElement);\n\n  HSolidElement.prototype.createContent = function () {\n    var rect;\n\n    if ((this || _global).data.hasMask) {\n      rect = createNS(\"rect\");\n      rect.setAttribute(\"width\", (this || _global).data.sw);\n      rect.setAttribute(\"height\", (this || _global).data.sh);\n      rect.setAttribute(\"fill\", (this || _global).data.sc);\n\n      (this || _global).svgElement.setAttribute(\"width\", (this || _global).data.sw);\n\n      (this || _global).svgElement.setAttribute(\"height\", (this || _global).data.sh);\n    } else {\n      rect = createTag(\"div\");\n      rect.style.width = (this || _global).data.sw + \"px\";\n      rect.style.height = (this || _global).data.sh + \"px\";\n      rect.style.backgroundColor = (this || _global).data.sc;\n    }\n\n    (this || _global).layerElement.appendChild(rect);\n  };\n  /* global createSizedArray, PropertyFactory, extendPrototype, HybridRenderer, ICompElement, HBaseElement */\n\n\n  function HCompElement(data, globalData, comp) {\n    (this || _global).layers = data.layers;\n    (this || _global).supports3d = !data.hasMask;\n    (this || _global).completeLayers = false;\n    (this || _global).pendingElements = [];\n    (this || _global).elements = (this || _global).layers ? createSizedArray((this || _global).layers.length) : [];\n    this.initElement(data, globalData, comp);\n    (this || _global).tm = data.tm ? PropertyFactory.getProp(this || _global, data.tm, 0, globalData.frameRate, this || _global) : {\n      _placeholder: true\n    };\n  }\n\n  extendPrototype([HybridRenderer, ICompElement, HBaseElement], HCompElement);\n  HCompElement.prototype._createBaseContainerElements = HCompElement.prototype.createContainerElements;\n\n  HCompElement.prototype.createContainerElements = function () {\n    this._createBaseContainerElements(); // divElement.style.clip = 'rect(0px, '+this.data.w+'px, '+this.data.h+'px, 0px)';\n\n\n    if ((this || _global).data.hasMask) {\n      (this || _global).svgElement.setAttribute(\"width\", (this || _global).data.w);\n\n      (this || _global).svgElement.setAttribute(\"height\", (this || _global).data.h);\n\n      (this || _global).transformedElement = (this || _global).baseElement;\n    } else {\n      (this || _global).transformedElement = (this || _global).layerElement;\n    }\n  };\n\n  HCompElement.prototype.addTo3dContainer = function (elem, pos) {\n    var j = 0;\n    var nextElement;\n\n    while (j < pos) {\n      if ((this || _global).elements[j] && (this || _global).elements[j].getBaseElement) {\n        nextElement = (this || _global).elements[j].getBaseElement();\n      }\n\n      j += 1;\n    }\n\n    if (nextElement) {\n      (this || _global).layerElement.insertBefore(elem, nextElement);\n    } else {\n      (this || _global).layerElement.appendChild(elem);\n    }\n  };\n  /* global createNS, extendPrototype, BaseElement, TransformElement, HSolidElement, SVGShapeElement, HBaseElement,\r\n  HierarchyElement, FrameElement, RenderableElement, createNS, bmMin, bmSqrt, bmMin, bmMax, bmPow */\n\n\n  function HShapeElement(data, globalData, comp) {\n    // List of drawable elements\n    (this || _global).shapes = []; // Full shape data\n\n    (this || _global).shapesData = data.shapes; // List of styles that will be applied to shapes\n\n    (this || _global).stylesList = []; // List of modifiers that will be applied to shapes\n\n    (this || _global).shapeModifiers = []; // List of items in shape tree\n\n    (this || _global).itemsData = []; // List of items in previous shape tree\n\n    (this || _global).processedElements = []; // List of animated components\n\n    (this || _global).animatedContents = [];\n    (this || _global).shapesContainer = createNS(\"g\");\n    this.initElement(data, globalData, comp); // Moving any property that doesn't get too much access after initialization because of v8 way of handling more than 10 properties.\n    // List of elements that have been created\n\n    (this || _global).prevViewData = [];\n    (this || _global).currentBBox = {\n      x: 999999,\n      y: -999999,\n      h: 0,\n      w: 0\n    };\n  }\n\n  extendPrototype([BaseElement, TransformElement, HSolidElement, SVGShapeElement, HBaseElement, HierarchyElement, FrameElement, RenderableElement], HShapeElement);\n  HShapeElement.prototype._renderShapeFrame = HShapeElement.prototype.renderInnerContent;\n\n  HShapeElement.prototype.createContent = function () {\n    var cont;\n    (this || _global).baseElement.style.fontSize = 0;\n\n    if ((this || _global).data.hasMask) {\n      (this || _global).layerElement.appendChild((this || _global).shapesContainer);\n\n      cont = (this || _global).svgElement;\n    } else {\n      cont = createNS(\"svg\");\n      var size = (this || _global).comp.data ? (this || _global).comp.data : (this || _global).globalData.compSize;\n      cont.setAttribute(\"width\", size.w);\n      cont.setAttribute(\"height\", size.h);\n      cont.appendChild((this || _global).shapesContainer);\n\n      (this || _global).layerElement.appendChild(cont);\n    }\n\n    this.searchShapes((this || _global).shapesData, (this || _global).itemsData, (this || _global).prevViewData, (this || _global).shapesContainer, 0, [], true);\n    this.filterUniqueShapes();\n    (this || _global).shapeCont = cont;\n  };\n\n  HShapeElement.prototype.getTransformedPoint = function (transformers, point) {\n    var i;\n    var len = transformers.length;\n\n    for (i = 0; i < len; i += 1) {\n      point = transformers[i].mProps.v.applyToPointArray(point[0], point[1], 0);\n    }\n\n    return point;\n  };\n\n  HShapeElement.prototype.calculateShapeBoundingBox = function (item, boundingBox) {\n    var shape = item.sh.v;\n    var transformers = item.transformers;\n    var i;\n    var len = shape._length;\n    var vPoint;\n    var oPoint;\n    var nextIPoint;\n    var nextVPoint;\n\n    if (len <= 1) {\n      return;\n    }\n\n    for (i = 0; i < len - 1; i += 1) {\n      vPoint = this.getTransformedPoint(transformers, shape.v[i]);\n      oPoint = this.getTransformedPoint(transformers, shape.o[i]);\n      nextIPoint = this.getTransformedPoint(transformers, shape.i[i + 1]);\n      nextVPoint = this.getTransformedPoint(transformers, shape.v[i + 1]);\n      this.checkBounds(vPoint, oPoint, nextIPoint, nextVPoint, boundingBox);\n    }\n\n    if (shape.c) {\n      vPoint = this.getTransformedPoint(transformers, shape.v[i]);\n      oPoint = this.getTransformedPoint(transformers, shape.o[i]);\n      nextIPoint = this.getTransformedPoint(transformers, shape.i[0]);\n      nextVPoint = this.getTransformedPoint(transformers, shape.v[0]);\n      this.checkBounds(vPoint, oPoint, nextIPoint, nextVPoint, boundingBox);\n    }\n  };\n\n  HShapeElement.prototype.checkBounds = function (vPoint, oPoint, nextIPoint, nextVPoint, boundingBox) {\n    this.getBoundsOfCurve(vPoint, oPoint, nextIPoint, nextVPoint);\n    var bounds = (this || _global).shapeBoundingBox;\n    boundingBox.x = bmMin(bounds.left, boundingBox.x);\n    boundingBox.xMax = bmMax(bounds.right, boundingBox.xMax);\n    boundingBox.y = bmMin(bounds.top, boundingBox.y);\n    boundingBox.yMax = bmMax(bounds.bottom, boundingBox.yMax);\n  };\n\n  HShapeElement.prototype.shapeBoundingBox = {\n    left: 0,\n    right: 0,\n    top: 0,\n    bottom: 0\n  };\n  HShapeElement.prototype.tempBoundingBox = {\n    x: 0,\n    xMax: 0,\n    y: 0,\n    yMax: 0,\n    width: 0,\n    height: 0\n  };\n\n  HShapeElement.prototype.getBoundsOfCurve = function (p0, p1, p2, p3) {\n    var bounds = [[p0[0], p3[0]], [p0[1], p3[1]]];\n\n    for (var a, b, c, t, b2ac, t1, t2, i = 0; i < 2; ++i) {\n      // eslint-disable-line no-plusplus\n      b = 6 * p0[i] - 12 * p1[i] + 6 * p2[i];\n      a = -3 * p0[i] + 9 * p1[i] - 9 * p2[i] + 3 * p3[i];\n      c = 3 * p1[i] - 3 * p0[i];\n      b |= 0; // eslint-disable-line no-bitwise\n\n      a |= 0; // eslint-disable-line no-bitwise\n\n      c |= 0; // eslint-disable-line no-bitwise\n\n      if (a === 0 && b === 0) {//\n      } else if (a === 0) {\n        t = -c / b;\n\n        if (t > 0 && t < 1) {\n          bounds[i].push(this.calculateF(t, p0, p1, p2, p3, i));\n        }\n      } else {\n        b2ac = b * b - 4 * c * a;\n\n        if (b2ac >= 0) {\n          t1 = (-b + bmSqrt(b2ac)) / (2 * a);\n          if (t1 > 0 && t1 < 1) bounds[i].push(this.calculateF(t1, p0, p1, p2, p3, i));\n          t2 = (-b - bmSqrt(b2ac)) / (2 * a);\n          if (t2 > 0 && t2 < 1) bounds[i].push(this.calculateF(t2, p0, p1, p2, p3, i));\n        }\n      }\n    }\n\n    (this || _global).shapeBoundingBox.left = bmMin.apply(null, bounds[0]);\n    (this || _global).shapeBoundingBox.top = bmMin.apply(null, bounds[1]);\n    (this || _global).shapeBoundingBox.right = bmMax.apply(null, bounds[0]);\n    (this || _global).shapeBoundingBox.bottom = bmMax.apply(null, bounds[1]);\n  };\n\n  HShapeElement.prototype.calculateF = function (t, p0, p1, p2, p3, i) {\n    return bmPow(1 - t, 3) * p0[i] + 3 * bmPow(1 - t, 2) * t * p1[i] + 3 * (1 - t) * bmPow(t, 2) * p2[i] + bmPow(t, 3) * p3[i];\n  };\n\n  HShapeElement.prototype.calculateBoundingBox = function (itemsData, boundingBox) {\n    var i;\n    var len = itemsData.length;\n\n    for (i = 0; i < len; i += 1) {\n      if (itemsData[i] && itemsData[i].sh) {\n        this.calculateShapeBoundingBox(itemsData[i], boundingBox);\n      } else if (itemsData[i] && itemsData[i].it) {\n        this.calculateBoundingBox(itemsData[i].it, boundingBox);\n      }\n    }\n  };\n\n  HShapeElement.prototype.currentBoxContains = function (box) {\n    return (this || _global).currentBBox.x <= box.x && (this || _global).currentBBox.y <= box.y && (this || _global).currentBBox.width + (this || _global).currentBBox.x >= box.x + box.width && (this || _global).currentBBox.height + (this || _global).currentBBox.y >= box.y + box.height;\n  };\n\n  HShapeElement.prototype.renderInnerContent = function () {\n    this._renderShapeFrame();\n\n    if (!(this || _global).hidden && ((this || _global)._isFirstFrame || (this || _global)._mdf)) {\n      var tempBoundingBox = (this || _global).tempBoundingBox;\n      var max = 999999;\n      tempBoundingBox.x = max;\n      tempBoundingBox.xMax = -max;\n      tempBoundingBox.y = max;\n      tempBoundingBox.yMax = -max;\n      this.calculateBoundingBox((this || _global).itemsData, tempBoundingBox);\n      tempBoundingBox.width = tempBoundingBox.xMax < tempBoundingBox.x ? 0 : tempBoundingBox.xMax - tempBoundingBox.x;\n      tempBoundingBox.height = tempBoundingBox.yMax < tempBoundingBox.y ? 0 : tempBoundingBox.yMax - tempBoundingBox.y; // var tempBoundingBox = this.shapeCont.getBBox();\n\n      if (this.currentBoxContains(tempBoundingBox)) {\n        return;\n      }\n\n      var changed = false;\n\n      if ((this || _global).currentBBox.w !== tempBoundingBox.width) {\n        (this || _global).currentBBox.w = tempBoundingBox.width;\n\n        (this || _global).shapeCont.setAttribute(\"width\", tempBoundingBox.width);\n\n        changed = true;\n      }\n\n      if ((this || _global).currentBBox.h !== tempBoundingBox.height) {\n        (this || _global).currentBBox.h = tempBoundingBox.height;\n\n        (this || _global).shapeCont.setAttribute(\"height\", tempBoundingBox.height);\n\n        changed = true;\n      }\n\n      if (changed || (this || _global).currentBBox.x !== tempBoundingBox.x || (this || _global).currentBBox.y !== tempBoundingBox.y) {\n        (this || _global).currentBBox.w = tempBoundingBox.width;\n        (this || _global).currentBBox.h = tempBoundingBox.height;\n        (this || _global).currentBBox.x = tempBoundingBox.x;\n        (this || _global).currentBBox.y = tempBoundingBox.y;\n\n        (this || _global).shapeCont.setAttribute(\"viewBox\", (this || _global).currentBBox.x + \" \" + (this || _global).currentBBox.y + \" \" + (this || _global).currentBBox.w + \" \" + (this || _global).currentBBox.h);\n\n        var shapeStyle = (this || _global).shapeCont.style;\n        var shapeTransform = \"translate(\" + (this || _global).currentBBox.x + \"px,\" + (this || _global).currentBBox.y + \"px)\";\n        shapeStyle.transform = shapeTransform;\n        shapeStyle.webkitTransform = shapeTransform;\n      }\n    }\n  };\n  /* global extendPrototype, BaseElement, TransformElement, HBaseElement, HierarchyElement, FrameElement,\r\n  RenderableDOMElement, ITextElement, createSizedArray, createTag, styleDiv, createNS */\n\n\n  function HTextElement(data, globalData, comp) {\n    (this || _global).textSpans = [];\n    (this || _global).textPaths = [];\n    (this || _global).currentBBox = {\n      x: 999999,\n      y: -999999,\n      h: 0,\n      w: 0\n    };\n    (this || _global).renderType = \"svg\";\n    (this || _global).isMasked = false;\n    this.initElement(data, globalData, comp);\n  }\n\n  extendPrototype([BaseElement, TransformElement, HBaseElement, HierarchyElement, FrameElement, RenderableDOMElement, ITextElement], HTextElement);\n\n  HTextElement.prototype.createContent = function () {\n    (this || _global).isMasked = this.checkMasks();\n\n    if ((this || _global).isMasked) {\n      (this || _global).renderType = \"svg\";\n      (this || _global).compW = (this || _global).comp.data.w;\n      (this || _global).compH = (this || _global).comp.data.h;\n\n      (this || _global).svgElement.setAttribute(\"width\", (this || _global).compW);\n\n      (this || _global).svgElement.setAttribute(\"height\", (this || _global).compH);\n\n      var g = createNS(\"g\");\n\n      (this || _global).maskedElement.appendChild(g);\n\n      (this || _global).innerElem = g;\n    } else {\n      (this || _global).renderType = \"html\";\n      (this || _global).innerElem = (this || _global).layerElement;\n    }\n\n    this.checkParenting();\n  };\n\n  HTextElement.prototype.buildNewText = function () {\n    var documentData = (this || _global).textProperty.currentData;\n    (this || _global).renderedLetters = createSizedArray(documentData.l ? documentData.l.length : 0);\n    var innerElemStyle = (this || _global).innerElem.style;\n    var textColor = documentData.fc ? this.buildColor(documentData.fc) : \"rgba(0,0,0,0)\";\n    innerElemStyle.fill = textColor;\n    innerElemStyle.color = textColor;\n\n    if (documentData.sc) {\n      innerElemStyle.stroke = this.buildColor(documentData.sc);\n      innerElemStyle.strokeWidth = documentData.sw + \"px\";\n    }\n\n    var fontData = (this || _global).globalData.fontManager.getFontByName(documentData.f);\n\n    if (!(this || _global).globalData.fontManager.chars) {\n      innerElemStyle.fontSize = documentData.finalSize + \"px\";\n      innerElemStyle.lineHeight = documentData.finalSize + \"px\";\n\n      if (fontData.fClass) {\n        (this || _global).innerElem.className = fontData.fClass;\n      } else {\n        innerElemStyle.fontFamily = fontData.fFamily;\n        var fWeight = documentData.fWeight;\n        var fStyle = documentData.fStyle;\n        innerElemStyle.fontStyle = fStyle;\n        innerElemStyle.fontWeight = fWeight;\n      }\n    }\n\n    var i;\n    var len;\n    var letters = documentData.l;\n    len = letters.length;\n    var tSpan;\n    var tParent;\n    var tCont;\n    var matrixHelper = (this || _global).mHelper;\n    var shapes;\n    var shapeStr = \"\";\n    var cnt = 0;\n\n    for (i = 0; i < len; i += 1) {\n      if ((this || _global).globalData.fontManager.chars) {\n        if (!(this || _global).textPaths[cnt]) {\n          tSpan = createNS(\"path\");\n          tSpan.setAttribute(\"stroke-linecap\", \"butt\");\n          tSpan.setAttribute(\"stroke-linejoin\", \"round\");\n          tSpan.setAttribute(\"stroke-miterlimit\", \"4\");\n        } else {\n          tSpan = (this || _global).textPaths[cnt];\n        }\n\n        if (!(this || _global).isMasked) {\n          if ((this || _global).textSpans[cnt]) {\n            tParent = (this || _global).textSpans[cnt];\n            tCont = tParent.children[0];\n          } else {\n            tParent = createTag(\"div\");\n            tParent.style.lineHeight = 0;\n            tCont = createNS(\"svg\");\n            tCont.appendChild(tSpan);\n            styleDiv(tParent);\n          }\n        }\n      } else if (!(this || _global).isMasked) {\n        if ((this || _global).textSpans[cnt]) {\n          tParent = (this || _global).textSpans[cnt];\n          tSpan = (this || _global).textPaths[cnt];\n        } else {\n          tParent = createTag(\"span\");\n          styleDiv(tParent);\n          tSpan = createTag(\"span\");\n          styleDiv(tSpan);\n          tParent.appendChild(tSpan);\n        }\n      } else {\n        tSpan = (this || _global).textPaths[cnt] ? (this || _global).textPaths[cnt] : createNS(\"text\");\n      } // tSpan.setAttribute('visibility', 'hidden');\n\n\n      if ((this || _global).globalData.fontManager.chars) {\n        var charData = (this || _global).globalData.fontManager.getCharData(documentData.finalText[i], fontData.fStyle, (this || _global).globalData.fontManager.getFontByName(documentData.f).fFamily);\n\n        var shapeData;\n\n        if (charData) {\n          shapeData = charData.data;\n        } else {\n          shapeData = null;\n        }\n\n        matrixHelper.reset();\n\n        if (shapeData && shapeData.shapes) {\n          shapes = shapeData.shapes[0].it;\n          matrixHelper.scale(documentData.finalSize / 100, documentData.finalSize / 100);\n          shapeStr = this.createPathShape(matrixHelper, shapes);\n          tSpan.setAttribute(\"d\", shapeStr);\n        }\n\n        if (!(this || _global).isMasked) {\n          (this || _global).innerElem.appendChild(tParent);\n\n          if (shapeData && shapeData.shapes) {\n            // document.body.appendChild is needed to get exact measure of shape\n            document.body.appendChild(tCont);\n            var boundingBox = tCont.getBBox();\n            tCont.setAttribute(\"width\", boundingBox.width + 2);\n            tCont.setAttribute(\"height\", boundingBox.height + 2);\n            tCont.setAttribute(\"viewBox\", boundingBox.x - 1 + \" \" + (boundingBox.y - 1) + \" \" + (boundingBox.width + 2) + \" \" + (boundingBox.height + 2));\n            var tContStyle = tCont.style;\n            var tContTranslation = \"translate(\" + (boundingBox.x - 1) + \"px,\" + (boundingBox.y - 1) + \"px)\";\n            tContStyle.transform = tContTranslation;\n            tContStyle.webkitTransform = tContTranslation;\n            letters[i].yOffset = boundingBox.y - 1;\n          } else {\n            tCont.setAttribute(\"width\", 1);\n            tCont.setAttribute(\"height\", 1);\n          }\n\n          tParent.appendChild(tCont);\n        } else {\n          (this || _global).innerElem.appendChild(tSpan);\n        }\n      } else {\n        tSpan.textContent = letters[i].val;\n        tSpan.setAttributeNS(\"http://www.w3.org/XML/1998/namespace\", \"xml:space\", \"preserve\");\n\n        if (!(this || _global).isMasked) {\n          (this || _global).innerElem.appendChild(tParent); //\n\n\n          var tStyle = tSpan.style;\n          var tSpanTranslation = \"translate3d(0,\" + -documentData.finalSize / 1.2 + \"px,0)\";\n          tStyle.transform = tSpanTranslation;\n          tStyle.webkitTransform = tSpanTranslation;\n        } else {\n          (this || _global).innerElem.appendChild(tSpan);\n        }\n      } //\n\n\n      if (!(this || _global).isMasked) {\n        (this || _global).textSpans[cnt] = tParent;\n      } else {\n        (this || _global).textSpans[cnt] = tSpan;\n      }\n\n      (this || _global).textSpans[cnt].style.display = \"block\";\n      (this || _global).textPaths[cnt] = tSpan;\n      cnt += 1;\n    }\n\n    while (cnt < (this || _global).textSpans.length) {\n      (this || _global).textSpans[cnt].style.display = \"none\";\n      cnt += 1;\n    }\n  };\n\n  HTextElement.prototype.renderInnerContent = function () {\n    var svgStyle;\n\n    if ((this || _global).data.singleShape) {\n      if (!(this || _global)._isFirstFrame && !(this || _global).lettersChangedFlag) {\n        return;\n      }\n\n      if ((this || _global).isMasked && (this || _global).finalTransform._matMdf) {\n        // Todo Benchmark if using this is better than getBBox\n        (this || _global).svgElement.setAttribute(\"viewBox\", -(this || _global).finalTransform.mProp.p.v[0] + \" \" + -(this || _global).finalTransform.mProp.p.v[1] + \" \" + (this || _global).compW + \" \" + (this || _global).compH);\n\n        svgStyle = (this || _global).svgElement.style;\n        var translation = \"translate(\" + -(this || _global).finalTransform.mProp.p.v[0] + \"px,\" + -(this || _global).finalTransform.mProp.p.v[1] + \"px)\";\n        svgStyle.transform = translation;\n        svgStyle.webkitTransform = translation;\n      }\n    }\n\n    (this || _global).textAnimator.getMeasures((this || _global).textProperty.currentData, (this || _global).lettersChangedFlag);\n\n    if (!(this || _global).lettersChangedFlag && !(this || _global).textAnimator.lettersChangedFlag) {\n      return;\n    }\n\n    var i;\n    var len;\n    var count = 0;\n    var renderedLetters = (this || _global).textAnimator.renderedLetters;\n    var letters = (this || _global).textProperty.currentData.l;\n    len = letters.length;\n    var renderedLetter;\n    var textSpan;\n    var textPath;\n\n    for (i = 0; i < len; i += 1) {\n      if (letters[i].n) {\n        count += 1;\n      } else {\n        textSpan = (this || _global).textSpans[i];\n        textPath = (this || _global).textPaths[i];\n        renderedLetter = renderedLetters[count];\n        count += 1;\n\n        if (renderedLetter._mdf.m) {\n          if (!(this || _global).isMasked) {\n            textSpan.style.webkitTransform = renderedLetter.m;\n            textSpan.style.transform = renderedLetter.m;\n          } else {\n            textSpan.setAttribute(\"transform\", renderedLetter.m);\n          }\n        } /// /textSpan.setAttribute('opacity',renderedLetter.o);\n\n\n        textSpan.style.opacity = renderedLetter.o;\n\n        if (renderedLetter.sw && renderedLetter._mdf.sw) {\n          textPath.setAttribute(\"stroke-width\", renderedLetter.sw);\n        }\n\n        if (renderedLetter.sc && renderedLetter._mdf.sc) {\n          textPath.setAttribute(\"stroke\", renderedLetter.sc);\n        }\n\n        if (renderedLetter.fc && renderedLetter._mdf.fc) {\n          textPath.setAttribute(\"fill\", renderedLetter.fc);\n          textPath.style.color = renderedLetter.fc;\n        }\n      }\n    }\n\n    if ((this || _global).innerElem.getBBox && !(this || _global).hidden && ((this || _global)._isFirstFrame || (this || _global)._mdf)) {\n      var boundingBox = (this || _global).innerElem.getBBox();\n\n      if ((this || _global).currentBBox.w !== boundingBox.width) {\n        (this || _global).currentBBox.w = boundingBox.width;\n\n        (this || _global).svgElement.setAttribute(\"width\", boundingBox.width);\n      }\n\n      if ((this || _global).currentBBox.h !== boundingBox.height) {\n        (this || _global).currentBBox.h = boundingBox.height;\n\n        (this || _global).svgElement.setAttribute(\"height\", boundingBox.height);\n      }\n\n      var margin = 1;\n\n      if ((this || _global).currentBBox.w !== boundingBox.width + margin * 2 || (this || _global).currentBBox.h !== boundingBox.height + margin * 2 || (this || _global).currentBBox.x !== boundingBox.x - margin || (this || _global).currentBBox.y !== boundingBox.y - margin) {\n        (this || _global).currentBBox.w = boundingBox.width + margin * 2;\n        (this || _global).currentBBox.h = boundingBox.height + margin * 2;\n        (this || _global).currentBBox.x = boundingBox.x - margin;\n        (this || _global).currentBBox.y = boundingBox.y - margin;\n\n        (this || _global).svgElement.setAttribute(\"viewBox\", (this || _global).currentBBox.x + \" \" + (this || _global).currentBBox.y + \" \" + (this || _global).currentBBox.w + \" \" + (this || _global).currentBBox.h);\n\n        svgStyle = (this || _global).svgElement.style;\n        var svgTransform = \"translate(\" + (this || _global).currentBBox.x + \"px,\" + (this || _global).currentBBox.y + \"px)\";\n        svgStyle.transform = svgTransform;\n        svgStyle.webkitTransform = svgTransform;\n      }\n    }\n  };\n  /* global extendPrototype, BaseElement, TransformElement, HBaseElement, HSolidElement, HierarchyElement,\r\n  FrameElement, RenderableElement, createNS */\n\n\n  function HImageElement(data, globalData, comp) {\n    (this || _global).assetData = globalData.getAssetData(data.refId);\n    this.initElement(data, globalData, comp);\n  }\n\n  extendPrototype([BaseElement, TransformElement, HBaseElement, HSolidElement, HierarchyElement, FrameElement, RenderableElement], HImageElement);\n\n  HImageElement.prototype.createContent = function () {\n    var assetPath = (this || _global).globalData.getAssetsPath((this || _global).assetData);\n\n    var img = new Image();\n\n    if ((this || _global).data.hasMask) {\n      (this || _global).imageElem = createNS(\"image\");\n\n      (this || _global).imageElem.setAttribute(\"width\", (this || _global).assetData.w + \"px\");\n\n      (this || _global).imageElem.setAttribute(\"height\", (this || _global).assetData.h + \"px\");\n\n      (this || _global).imageElem.setAttributeNS(\"http://www.w3.org/1999/xlink\", \"href\", assetPath);\n\n      (this || _global).layerElement.appendChild((this || _global).imageElem);\n\n      (this || _global).baseElement.setAttribute(\"width\", (this || _global).assetData.w);\n\n      (this || _global).baseElement.setAttribute(\"height\", (this || _global).assetData.h);\n    } else {\n      (this || _global).layerElement.appendChild(img);\n    }\n\n    img.crossOrigin = \"anonymous\";\n    img.src = assetPath;\n\n    if ((this || _global).data.ln) {\n      (this || _global).baseElement.setAttribute(\"id\", (this || _global).data.ln);\n    }\n  };\n  /* global PropertyFactory, degToRads, Matrix, extendPrototype, BaseElement, FrameElement, HierarchyElement */\n\n\n  function HCameraElement(data, globalData, comp) {\n    this.initFrame();\n    this.initBaseData(data, globalData, comp);\n    this.initHierarchy();\n    var getProp = PropertyFactory.getProp;\n    (this || _global).pe = getProp(this || _global, data.pe, 0, 0, this || _global);\n\n    if (data.ks.p.s) {\n      (this || _global).px = getProp(this || _global, data.ks.p.x, 1, 0, this || _global);\n      (this || _global).py = getProp(this || _global, data.ks.p.y, 1, 0, this || _global);\n      (this || _global).pz = getProp(this || _global, data.ks.p.z, 1, 0, this || _global);\n    } else {\n      (this || _global).p = getProp(this || _global, data.ks.p, 1, 0, this || _global);\n    }\n\n    if (data.ks.a) {\n      (this || _global).a = getProp(this || _global, data.ks.a, 1, 0, this || _global);\n    }\n\n    if (data.ks.or.k.length && data.ks.or.k[0].to) {\n      var i;\n      var len = data.ks.or.k.length;\n\n      for (i = 0; i < len; i += 1) {\n        data.ks.or.k[i].to = null;\n        data.ks.or.k[i].ti = null;\n      }\n    }\n\n    (this || _global).or = getProp(this || _global, data.ks.or, 1, degToRads, this || _global);\n    (this || _global).or.sh = true;\n    (this || _global).rx = getProp(this || _global, data.ks.rx, 0, degToRads, this || _global);\n    (this || _global).ry = getProp(this || _global, data.ks.ry, 0, degToRads, this || _global);\n    (this || _global).rz = getProp(this || _global, data.ks.rz, 0, degToRads, this || _global);\n    (this || _global).mat = new Matrix();\n    (this || _global)._prevMat = new Matrix();\n    (this || _global)._isFirstFrame = true; // TODO: find a better way to make the HCamera element to be compatible with the LayerInterface and TransformInterface.\n\n    (this || _global).finalTransform = {\n      mProp: this || _global\n    };\n  }\n\n  extendPrototype([BaseElement, FrameElement, HierarchyElement], HCameraElement);\n\n  HCameraElement.prototype.setup = function () {\n    var i;\n    var len = (this || _global).comp.threeDElements.length;\n    var comp;\n    var perspectiveStyle;\n    var containerStyle;\n\n    for (i = 0; i < len; i += 1) {\n      // [perspectiveElem,container]\n      comp = (this || _global).comp.threeDElements[i];\n\n      if (comp.type === \"3d\") {\n        perspectiveStyle = comp.perspectiveElem.style;\n        containerStyle = comp.container.style;\n        var perspective = (this || _global).pe.v + \"px\";\n        var origin = \"0px 0px 0px\";\n        var matrix = \"matrix3d(1,0,0,0,0,1,0,0,0,0,1,0,0,0,0,1)\";\n        perspectiveStyle.perspective = perspective;\n        perspectiveStyle.webkitPerspective = perspective;\n        containerStyle.transformOrigin = origin;\n        containerStyle.mozTransformOrigin = origin;\n        containerStyle.webkitTransformOrigin = origin;\n        perspectiveStyle.transform = matrix;\n        perspectiveStyle.webkitTransform = matrix;\n      }\n    }\n  };\n\n  HCameraElement.prototype.createElements = function () {};\n\n  HCameraElement.prototype.hide = function () {};\n\n  HCameraElement.prototype.renderFrame = function () {\n    var _mdf = (this || _global)._isFirstFrame;\n    var i;\n    var len;\n\n    if ((this || _global).hierarchy) {\n      len = (this || _global).hierarchy.length;\n\n      for (i = 0; i < len; i += 1) {\n        _mdf = (this || _global).hierarchy[i].finalTransform.mProp._mdf || _mdf;\n      }\n    }\n\n    if (_mdf || (this || _global).pe._mdf || (this || _global).p && (this || _global).p._mdf || (this || _global).px && ((this || _global).px._mdf || (this || _global).py._mdf || (this || _global).pz._mdf) || (this || _global).rx._mdf || (this || _global).ry._mdf || (this || _global).rz._mdf || (this || _global).or._mdf || (this || _global).a && (this || _global).a._mdf) {\n      (this || _global).mat.reset();\n\n      if ((this || _global).hierarchy) {\n        len = (this || _global).hierarchy.length - 1;\n\n        for (i = len; i >= 0; i -= 1) {\n          var mTransf = (this || _global).hierarchy[i].finalTransform.mProp;\n\n          (this || _global).mat.translate(-mTransf.p.v[0], -mTransf.p.v[1], mTransf.p.v[2]);\n\n          (this || _global).mat.rotateX(-mTransf.or.v[0]).rotateY(-mTransf.or.v[1]).rotateZ(mTransf.or.v[2]);\n\n          (this || _global).mat.rotateX(-mTransf.rx.v).rotateY(-mTransf.ry.v).rotateZ(mTransf.rz.v);\n\n          (this || _global).mat.scale(1 / mTransf.s.v[0], 1 / mTransf.s.v[1], 1 / mTransf.s.v[2]);\n\n          (this || _global).mat.translate(mTransf.a.v[0], mTransf.a.v[1], mTransf.a.v[2]);\n        }\n      }\n\n      if ((this || _global).p) {\n        (this || _global).mat.translate(-(this || _global).p.v[0], -(this || _global).p.v[1], (this || _global).p.v[2]);\n      } else {\n        (this || _global).mat.translate(-(this || _global).px.v, -(this || _global).py.v, (this || _global).pz.v);\n      }\n\n      if ((this || _global).a) {\n        var diffVector;\n\n        if ((this || _global).p) {\n          diffVector = [(this || _global).p.v[0] - (this || _global).a.v[0], (this || _global).p.v[1] - (this || _global).a.v[1], (this || _global).p.v[2] - (this || _global).a.v[2]];\n        } else {\n          diffVector = [(this || _global).px.v - (this || _global).a.v[0], (this || _global).py.v - (this || _global).a.v[1], (this || _global).pz.v - (this || _global).a.v[2]];\n        }\n\n        var mag = Math.sqrt(Math.pow(diffVector[0], 2) + Math.pow(diffVector[1], 2) + Math.pow(diffVector[2], 2)); // var lookDir = getNormalizedPoint(getDiffVector(this.a.v,this.p.v));\n\n        var lookDir = [diffVector[0] / mag, diffVector[1] / mag, diffVector[2] / mag];\n        var lookLengthOnXZ = Math.sqrt(lookDir[2] * lookDir[2] + lookDir[0] * lookDir[0]);\n        var mRotationX = Math.atan2(lookDir[1], lookLengthOnXZ);\n        var mRotationY = Math.atan2(lookDir[0], -lookDir[2]);\n\n        (this || _global).mat.rotateY(mRotationY).rotateX(-mRotationX);\n      }\n\n      (this || _global).mat.rotateX(-(this || _global).rx.v).rotateY(-(this || _global).ry.v).rotateZ((this || _global).rz.v);\n\n      (this || _global).mat.rotateX(-(this || _global).or.v[0]).rotateY(-(this || _global).or.v[1]).rotateZ((this || _global).or.v[2]);\n\n      (this || _global).mat.translate((this || _global).globalData.compSize.w / 2, (this || _global).globalData.compSize.h / 2, 0);\n\n      (this || _global).mat.translate(0, 0, (this || _global).pe.v);\n\n      var hasMatrixChanged = !(this || _global)._prevMat.equals((this || _global).mat);\n\n      if ((hasMatrixChanged || (this || _global).pe._mdf) && (this || _global).comp.threeDElements) {\n        len = (this || _global).comp.threeDElements.length;\n        var comp;\n        var perspectiveStyle;\n        var containerStyle;\n\n        for (i = 0; i < len; i += 1) {\n          comp = (this || _global).comp.threeDElements[i];\n\n          if (comp.type === \"3d\") {\n            if (hasMatrixChanged) {\n              var matValue = (this || _global).mat.toCSS();\n\n              containerStyle = comp.container.style;\n              containerStyle.transform = matValue;\n              containerStyle.webkitTransform = matValue;\n            }\n\n            if ((this || _global).pe._mdf) {\n              perspectiveStyle = comp.perspectiveElem.style;\n              perspectiveStyle.perspective = (this || _global).pe.v + \"px\";\n              perspectiveStyle.webkitPerspective = (this || _global).pe.v + \"px\";\n            }\n          }\n        }\n\n        (this || _global).mat.clone((this || _global)._prevMat);\n      }\n    }\n\n    (this || _global)._isFirstFrame = false;\n  };\n\n  HCameraElement.prototype.prepareFrame = function (num) {\n    this.prepareProperties(num, true);\n  };\n\n  HCameraElement.prototype.destroy = function () {};\n\n  HCameraElement.prototype.getBaseElement = function () {\n    return null;\n  };\n\n  function HEffects() {}\n\n  HEffects.prototype.renderFrame = function () {};\n  /* global createTag, AnimationItem */\n\n  /* exported animationManager */\n\n\n  var animationManager = function () {\n    var moduleOb = {};\n    var registeredAnimations = [];\n    var initTime = 0;\n    var len = 0;\n    var playingAnimationsNum = 0;\n    var _stopped = true;\n    var _isFrozen = false;\n\n    function removeElement(ev) {\n      var i = 0;\n      var animItem = ev.target;\n\n      while (i < len) {\n        if (registeredAnimations[i].animation === animItem) {\n          registeredAnimations.splice(i, 1);\n          i -= 1;\n          len -= 1;\n\n          if (!animItem.isPaused) {\n            subtractPlayingCount();\n          }\n        }\n\n        i += 1;\n      }\n    }\n\n    function registerAnimation(element, animationData) {\n      if (!element) {\n        return null;\n      }\n\n      var i = 0;\n\n      while (i < len) {\n        if (registeredAnimations[i].elem === element && registeredAnimations[i].elem !== null) {\n          return registeredAnimations[i].animation;\n        }\n\n        i += 1;\n      }\n\n      var animItem = new AnimationItem();\n      setupAnimation(animItem, element);\n      animItem.setData(element, animationData);\n      return animItem;\n    }\n\n    function getRegisteredAnimations() {\n      var i;\n      var lenAnims = registeredAnimations.length;\n      var animations = [];\n\n      for (i = 0; i < lenAnims; i += 1) {\n        animations.push(registeredAnimations[i].animation);\n      }\n\n      return animations;\n    }\n\n    function addPlayingCount() {\n      playingAnimationsNum += 1;\n      activate();\n    }\n\n    function subtractPlayingCount() {\n      playingAnimationsNum -= 1;\n    }\n\n    function setupAnimation(animItem, element) {\n      animItem.addEventListener(\"destroy\", removeElement);\n      animItem.addEventListener(\"_active\", addPlayingCount);\n      animItem.addEventListener(\"_idle\", subtractPlayingCount);\n      registeredAnimations.push({\n        elem: element,\n        animation: animItem\n      });\n      len += 1;\n    }\n\n    function loadAnimation(params) {\n      var animItem = new AnimationItem();\n      setupAnimation(animItem, null);\n      animItem.setParams(params);\n      return animItem;\n    }\n\n    function setSpeed(val, animation) {\n      var i;\n\n      for (i = 0; i < len; i += 1) {\n        registeredAnimations[i].animation.setSpeed(val, animation);\n      }\n    }\n\n    function setDirection(val, animation) {\n      var i;\n\n      for (i = 0; i < len; i += 1) {\n        registeredAnimations[i].animation.setDirection(val, animation);\n      }\n    }\n\n    function play(animation) {\n      var i;\n\n      for (i = 0; i < len; i += 1) {\n        registeredAnimations[i].animation.play(animation);\n      }\n    }\n\n    function resume(nowTime) {\n      var elapsedTime = nowTime - initTime;\n      var i;\n\n      for (i = 0; i < len; i += 1) {\n        registeredAnimations[i].animation.advanceTime(elapsedTime);\n      }\n\n      initTime = nowTime;\n\n      if (playingAnimationsNum && !_isFrozen) {\n        window.requestAnimationFrame(resume);\n      } else {\n        _stopped = true;\n      }\n    }\n\n    function first(nowTime) {\n      initTime = nowTime;\n      window.requestAnimationFrame(resume);\n    }\n\n    function pause(animation) {\n      var i;\n\n      for (i = 0; i < len; i += 1) {\n        registeredAnimations[i].animation.pause(animation);\n      }\n    }\n\n    function goToAndStop(value, isFrame, animation) {\n      var i;\n\n      for (i = 0; i < len; i += 1) {\n        registeredAnimations[i].animation.goToAndStop(value, isFrame, animation);\n      }\n    }\n\n    function stop(animation) {\n      var i;\n\n      for (i = 0; i < len; i += 1) {\n        registeredAnimations[i].animation.stop(animation);\n      }\n    }\n\n    function togglePause(animation) {\n      var i;\n\n      for (i = 0; i < len; i += 1) {\n        registeredAnimations[i].animation.togglePause(animation);\n      }\n    }\n\n    function destroy(animation) {\n      var i;\n\n      for (i = len - 1; i >= 0; i -= 1) {\n        registeredAnimations[i].animation.destroy(animation);\n      }\n    }\n\n    function searchAnimations(animationData, standalone, renderer) {\n      var animElements = [].concat([].slice.call(document.getElementsByClassName(\"lottie\")), [].slice.call(document.getElementsByClassName(\"bodymovin\")));\n      var i;\n      var lenAnims = animElements.length;\n\n      for (i = 0; i < lenAnims; i += 1) {\n        if (renderer) {\n          animElements[i].setAttribute(\"data-bm-type\", renderer);\n        }\n\n        registerAnimation(animElements[i], animationData);\n      }\n\n      if (standalone && lenAnims === 0) {\n        if (!renderer) {\n          renderer = \"svg\";\n        }\n\n        var body = document.getElementsByTagName(\"body\")[0];\n        body.innerText = \"\";\n        var div = createTag(\"div\");\n        div.style.width = \"100%\";\n        div.style.height = \"100%\";\n        div.setAttribute(\"data-bm-type\", renderer);\n        body.appendChild(div);\n        registerAnimation(div, animationData);\n      }\n    }\n\n    function resize() {\n      var i;\n\n      for (i = 0; i < len; i += 1) {\n        registeredAnimations[i].animation.resize();\n      }\n    }\n\n    function activate() {\n      if (!_isFrozen && playingAnimationsNum) {\n        if (_stopped) {\n          window.requestAnimationFrame(first);\n          _stopped = false;\n        }\n      }\n    }\n\n    function freeze() {\n      _isFrozen = true;\n    }\n\n    function unfreeze() {\n      _isFrozen = false;\n      activate();\n    }\n\n    function setVolume(val, animation) {\n      var i;\n\n      for (i = 0; i < len; i += 1) {\n        registeredAnimations[i].animation.setVolume(val, animation);\n      }\n    }\n\n    function mute(animation) {\n      var i;\n\n      for (i = 0; i < len; i += 1) {\n        registeredAnimations[i].animation.mute(animation);\n      }\n    }\n\n    function unmute(animation) {\n      var i;\n\n      for (i = 0; i < len; i += 1) {\n        registeredAnimations[i].animation.unmute(animation);\n      }\n    }\n\n    moduleOb.registerAnimation = registerAnimation;\n    moduleOb.loadAnimation = loadAnimation;\n    moduleOb.setSpeed = setSpeed;\n    moduleOb.setDirection = setDirection;\n    moduleOb.play = play;\n    moduleOb.pause = pause;\n    moduleOb.stop = stop;\n    moduleOb.togglePause = togglePause;\n    moduleOb.searchAnimations = searchAnimations;\n    moduleOb.resize = resize; // moduleOb.start = start;\n\n    moduleOb.goToAndStop = goToAndStop;\n    moduleOb.destroy = destroy;\n    moduleOb.freeze = freeze;\n    moduleOb.unfreeze = unfreeze;\n    moduleOb.setVolume = setVolume;\n    moduleOb.mute = mute;\n    moduleOb.unmute = unmute;\n    moduleOb.getRegisteredAnimations = getRegisteredAnimations;\n    return moduleOb;\n  }();\n  /* global createElementID, subframeEnabled, ProjectInterface, ImagePreloader, audioControllerFactory, extendPrototype, BaseEvent,\r\n  CanvasRenderer, SVGRenderer, HybridRenderer, assetLoader, dataManager, expressionsPlugin, BMEnterFrameEvent, BMCompleteLoopEvent,\r\n  BMCompleteEvent, BMSegmentStartEvent, BMDestroyEvent, BMEnterFrameEvent, BMCompleteLoopEvent, BMCompleteEvent, BMSegmentStartEvent,\r\n  BMDestroyEvent, BMRenderFrameErrorEvent, BMConfigErrorEvent, markerParser */\n\n\n  var AnimationItem = function () {\n    (this || _global)._cbs = [];\n    (this || _global).name = \"\";\n    (this || _global).path = \"\";\n    (this || _global).isLoaded = false;\n    (this || _global).currentFrame = 0;\n    (this || _global).currentRawFrame = 0;\n    (this || _global).firstFrame = 0;\n    (this || _global).totalFrames = 0;\n    (this || _global).frameRate = 0;\n    (this || _global).frameMult = 0;\n    (this || _global).playSpeed = 1;\n    (this || _global).playDirection = 1;\n    (this || _global).playCount = 0;\n    (this || _global).animationData = {};\n    (this || _global).assets = [];\n    (this || _global).isPaused = true;\n    (this || _global).autoplay = false;\n    (this || _global).loop = true;\n    (this || _global).renderer = null;\n    (this || _global).animationID = createElementID();\n    (this || _global).assetsPath = \"\";\n    (this || _global).timeCompleted = 0;\n    (this || _global).segmentPos = 0;\n    (this || _global).isSubframeEnabled = subframeEnabled;\n    (this || _global).segments = [];\n    (this || _global)._idle = true;\n    (this || _global)._completedLoop = false;\n    (this || _global).projectInterface = ProjectInterface();\n    (this || _global).imagePreloader = new ImagePreloader();\n    (this || _global).audioController = audioControllerFactory();\n    (this || _global).markers = [];\n  };\n\n  extendPrototype([BaseEvent], AnimationItem);\n\n  AnimationItem.prototype.setParams = function (params) {\n    if (params.wrapper || params.container) {\n      (this || _global).wrapper = params.wrapper || params.container;\n    }\n\n    var animType = \"svg\";\n\n    if (params.animType) {\n      animType = params.animType;\n    } else if (params.renderer) {\n      animType = params.renderer;\n    }\n\n    switch (animType) {\n      case \"canvas\":\n        (this || _global).renderer = new CanvasRenderer(this || _global, params.rendererSettings);\n        break;\n\n      case \"svg\":\n        (this || _global).renderer = new SVGRenderer(this || _global, params.rendererSettings);\n        break;\n\n      default:\n        (this || _global).renderer = new HybridRenderer(this || _global, params.rendererSettings);\n        break;\n    }\n\n    (this || _global).imagePreloader.setCacheType(animType, (this || _global).renderer.globalData.defs);\n\n    (this || _global).renderer.setProjectInterface((this || _global).projectInterface);\n\n    (this || _global).animType = animType;\n\n    if (params.loop === \"\" || params.loop === null || params.loop === undefined || params.loop === true) {\n      (this || _global).loop = true;\n    } else if (params.loop === false) {\n      (this || _global).loop = false;\n    } else {\n      (this || _global).loop = parseInt(params.loop, 10);\n    }\n\n    (this || _global).autoplay = \"autoplay\" in params ? params.autoplay : true;\n    (this || _global).name = params.name ? params.name : \"\";\n    (this || _global).autoloadSegments = Object.prototype.hasOwnProperty.call(params, \"autoloadSegments\") ? params.autoloadSegments : true;\n    (this || _global).assetsPath = params.assetsPath;\n    (this || _global).initialSegment = params.initialSegment;\n\n    if (params.audioFactory) {\n      (this || _global).audioController.setAudioFactory(params.audioFactory);\n    }\n\n    if (params.animationData) {\n      this.configAnimation(params.animationData);\n    } else if (params.path) {\n      if (params.path.lastIndexOf(\"\\\\\") !== -1) {\n        (this || _global).path = params.path.substr(0, params.path.lastIndexOf(\"\\\\\") + 1);\n      } else {\n        (this || _global).path = params.path.substr(0, params.path.lastIndexOf(\"/\") + 1);\n      }\n\n      (this || _global).fileName = params.path.substr(params.path.lastIndexOf(\"/\") + 1);\n      (this || _global).fileName = (this || _global).fileName.substr(0, (this || _global).fileName.lastIndexOf(\".json\"));\n      assetLoader.load(params.path, (this || _global).configAnimation.bind(this || _global), function () {\n        this.trigger(\"data_failed\");\n      }.bind(this || _global));\n    }\n  };\n\n  AnimationItem.prototype.setData = function (wrapper, animationData) {\n    if (animationData) {\n      if (typeof animationData !== \"object\") {\n        animationData = JSON.parse(animationData);\n      }\n    }\n\n    var params = {\n      wrapper: wrapper,\n      animationData: animationData\n    };\n    var wrapperAttributes = wrapper.attributes;\n    params.path = wrapperAttributes.getNamedItem(\"data-animation-path\") // eslint-disable-line no-nested-ternary\n    ? wrapperAttributes.getNamedItem(\"data-animation-path\").value : wrapperAttributes.getNamedItem(\"data-bm-path\") // eslint-disable-line no-nested-ternary\n    ? wrapperAttributes.getNamedItem(\"data-bm-path\").value : wrapperAttributes.getNamedItem(\"bm-path\") ? wrapperAttributes.getNamedItem(\"bm-path\").value : \"\";\n    params.animType = wrapperAttributes.getNamedItem(\"data-anim-type\") // eslint-disable-line no-nested-ternary\n    ? wrapperAttributes.getNamedItem(\"data-anim-type\").value : wrapperAttributes.getNamedItem(\"data-bm-type\") // eslint-disable-line no-nested-ternary\n    ? wrapperAttributes.getNamedItem(\"data-bm-type\").value : wrapperAttributes.getNamedItem(\"bm-type\") // eslint-disable-line no-nested-ternary\n    ? wrapperAttributes.getNamedItem(\"bm-type\").value : wrapperAttributes.getNamedItem(\"data-bm-renderer\") // eslint-disable-line no-nested-ternary\n    ? wrapperAttributes.getNamedItem(\"data-bm-renderer\").value : wrapperAttributes.getNamedItem(\"bm-renderer\") ? wrapperAttributes.getNamedItem(\"bm-renderer\").value : \"canvas\";\n    var loop = wrapperAttributes.getNamedItem(\"data-anim-loop\") // eslint-disable-line no-nested-ternary\n    ? wrapperAttributes.getNamedItem(\"data-anim-loop\").value : wrapperAttributes.getNamedItem(\"data-bm-loop\") // eslint-disable-line no-nested-ternary\n    ? wrapperAttributes.getNamedItem(\"data-bm-loop\").value : wrapperAttributes.getNamedItem(\"bm-loop\") ? wrapperAttributes.getNamedItem(\"bm-loop\").value : \"\";\n\n    if (loop === \"false\") {\n      params.loop = false;\n    } else if (loop === \"true\") {\n      params.loop = true;\n    } else if (loop !== \"\") {\n      params.loop = parseInt(loop, 10);\n    }\n\n    var autoplay = wrapperAttributes.getNamedItem(\"data-anim-autoplay\") // eslint-disable-line no-nested-ternary\n    ? wrapperAttributes.getNamedItem(\"data-anim-autoplay\").value : wrapperAttributes.getNamedItem(\"data-bm-autoplay\") // eslint-disable-line no-nested-ternary\n    ? wrapperAttributes.getNamedItem(\"data-bm-autoplay\").value : wrapperAttributes.getNamedItem(\"bm-autoplay\") ? wrapperAttributes.getNamedItem(\"bm-autoplay\").value : true;\n    params.autoplay = autoplay !== \"false\";\n    params.name = wrapperAttributes.getNamedItem(\"data-name\") // eslint-disable-line no-nested-ternary\n    ? wrapperAttributes.getNamedItem(\"data-name\").value : wrapperAttributes.getNamedItem(\"data-bm-name\") // eslint-disable-line no-nested-ternary\n    ? wrapperAttributes.getNamedItem(\"data-bm-name\").value : wrapperAttributes.getNamedItem(\"bm-name\") ? wrapperAttributes.getNamedItem(\"bm-name\").value : \"\";\n    var prerender = wrapperAttributes.getNamedItem(\"data-anim-prerender\") // eslint-disable-line no-nested-ternary\n    ? wrapperAttributes.getNamedItem(\"data-anim-prerender\").value : wrapperAttributes.getNamedItem(\"data-bm-prerender\") // eslint-disable-line no-nested-ternary\n    ? wrapperAttributes.getNamedItem(\"data-bm-prerender\").value : wrapperAttributes.getNamedItem(\"bm-prerender\") ? wrapperAttributes.getNamedItem(\"bm-prerender\").value : \"\";\n\n    if (prerender === \"false\") {\n      params.prerender = false;\n    }\n\n    this.setParams(params);\n  };\n\n  AnimationItem.prototype.includeLayers = function (data) {\n    if (data.op > (this || _global).animationData.op) {\n      (this || _global).animationData.op = data.op;\n      (this || _global).totalFrames = Math.floor(data.op - (this || _global).animationData.ip);\n    }\n\n    var layers = (this || _global).animationData.layers;\n    var i;\n    var len = layers.length;\n    var newLayers = data.layers;\n    var j;\n    var jLen = newLayers.length;\n\n    for (j = 0; j < jLen; j += 1) {\n      i = 0;\n\n      while (i < len) {\n        if (layers[i].id === newLayers[j].id) {\n          layers[i] = newLayers[j];\n          break;\n        }\n\n        i += 1;\n      }\n    }\n\n    if (data.chars || data.fonts) {\n      (this || _global).renderer.globalData.fontManager.addChars(data.chars);\n\n      (this || _global).renderer.globalData.fontManager.addFonts(data.fonts, (this || _global).renderer.globalData.defs);\n    }\n\n    if (data.assets) {\n      len = data.assets.length;\n\n      for (i = 0; i < len; i += 1) {\n        (this || _global).animationData.assets.push(data.assets[i]);\n      }\n    }\n\n    (this || _global).animationData.__complete = false;\n    dataManager.completeData((this || _global).animationData, (this || _global).renderer.globalData.fontManager);\n\n    (this || _global).renderer.includeLayers(data.layers);\n\n    if (expressionsPlugin) {\n      expressionsPlugin.initExpressions(this || _global);\n    }\n\n    this.loadNextSegment();\n  };\n\n  AnimationItem.prototype.loadNextSegment = function () {\n    var segments = (this || _global).animationData.segments;\n\n    if (!segments || segments.length === 0 || !(this || _global).autoloadSegments) {\n      this.trigger(\"data_ready\");\n      (this || _global).timeCompleted = (this || _global).totalFrames;\n      return;\n    }\n\n    var segment = segments.shift();\n    (this || _global).timeCompleted = segment.time * (this || _global).frameRate;\n    var segmentPath = (this || _global).path + (this || _global).fileName + \"_\" + (this || _global).segmentPos + \".json\";\n    (this || _global).segmentPos += 1;\n    assetLoader.load(segmentPath, (this || _global).includeLayers.bind(this || _global), function () {\n      this.trigger(\"data_failed\");\n    }.bind(this || _global));\n  };\n\n  AnimationItem.prototype.loadSegments = function () {\n    var segments = (this || _global).animationData.segments;\n\n    if (!segments) {\n      (this || _global).timeCompleted = (this || _global).totalFrames;\n    }\n\n    this.loadNextSegment();\n  };\n\n  AnimationItem.prototype.imagesLoaded = function () {\n    this.trigger(\"loaded_images\");\n    this.checkLoaded();\n  };\n\n  AnimationItem.prototype.preloadImages = function () {\n    (this || _global).imagePreloader.setAssetsPath((this || _global).assetsPath);\n\n    (this || _global).imagePreloader.setPath((this || _global).path);\n\n    (this || _global).imagePreloader.loadAssets((this || _global).animationData.assets, (this || _global).imagesLoaded.bind(this || _global));\n  };\n\n  AnimationItem.prototype.configAnimation = function (animData) {\n    if (!(this || _global).renderer) {\n      return;\n    }\n\n    try {\n      (this || _global).animationData = animData;\n\n      if ((this || _global).initialSegment) {\n        (this || _global).totalFrames = Math.floor((this || _global).initialSegment[1] - (this || _global).initialSegment[0]);\n        (this || _global).firstFrame = Math.round((this || _global).initialSegment[0]);\n      } else {\n        (this || _global).totalFrames = Math.floor((this || _global).animationData.op - (this || _global).animationData.ip);\n        (this || _global).firstFrame = Math.round((this || _global).animationData.ip);\n      }\n\n      (this || _global).renderer.configAnimation(animData);\n\n      if (!animData.assets) {\n        animData.assets = [];\n      }\n\n      (this || _global).assets = (this || _global).animationData.assets;\n      (this || _global).frameRate = (this || _global).animationData.fr;\n      (this || _global).frameMult = (this || _global).animationData.fr / 1000;\n\n      (this || _global).renderer.searchExtraCompositions(animData.assets);\n\n      (this || _global).markers = markerParser(animData.markers || []);\n      this.trigger(\"config_ready\");\n      this.preloadImages();\n      this.loadSegments();\n      this.updaFrameModifier();\n      this.waitForFontsLoaded();\n\n      if ((this || _global).isPaused) {\n        (this || _global).audioController.pause();\n      }\n    } catch (error) {\n      this.triggerConfigError(error);\n    }\n  };\n\n  AnimationItem.prototype.waitForFontsLoaded = function () {\n    if (!(this || _global).renderer) {\n      return;\n    }\n\n    if ((this || _global).renderer.globalData.fontManager.isLoaded) {\n      this.checkLoaded();\n    } else {\n      setTimeout((this || _global).waitForFontsLoaded.bind(this || _global), 20);\n    }\n  };\n\n  AnimationItem.prototype.checkLoaded = function () {\n    if (!(this || _global).isLoaded && (this || _global).renderer.globalData.fontManager.isLoaded && ((this || _global).imagePreloader.loadedImages() || (this || _global).renderer.rendererType !== \"canvas\") && (this || _global).imagePreloader.loadedFootages()) {\n      (this || _global).isLoaded = true;\n      dataManager.completeData((this || _global).animationData, (this || _global).renderer.globalData.fontManager);\n\n      if (expressionsPlugin) {\n        expressionsPlugin.initExpressions(this || _global);\n      }\n\n      (this || _global).renderer.initItems();\n\n      setTimeout(function () {\n        this.trigger(\"DOMLoaded\");\n      }.bind(this || _global), 0);\n      this.gotoFrame();\n\n      if ((this || _global).autoplay) {\n        this.play();\n      }\n    }\n  };\n\n  AnimationItem.prototype.resize = function () {\n    (this || _global).renderer.updateContainerSize();\n  };\n\n  AnimationItem.prototype.setSubframe = function (flag) {\n    (this || _global).isSubframeEnabled = !!flag;\n  };\n\n  AnimationItem.prototype.gotoFrame = function () {\n    (this || _global).currentFrame = (this || _global).isSubframeEnabled ? (this || _global).currentRawFrame : ~~(this || _global).currentRawFrame; // eslint-disable-line no-bitwise\n\n    if ((this || _global).timeCompleted !== (this || _global).totalFrames && (this || _global).currentFrame > (this || _global).timeCompleted) {\n      (this || _global).currentFrame = (this || _global).timeCompleted;\n    }\n\n    this.trigger(\"enterFrame\");\n    this.renderFrame();\n  };\n\n  AnimationItem.prototype.renderFrame = function () {\n    if ((this || _global).isLoaded === false || !(this || _global).renderer) {\n      return;\n    }\n\n    try {\n      (this || _global).renderer.renderFrame((this || _global).currentFrame + (this || _global).firstFrame);\n    } catch (error) {\n      this.triggerRenderFrameError(error);\n    }\n  };\n\n  AnimationItem.prototype.play = function (name) {\n    if (name && (this || _global).name !== name) {\n      return;\n    }\n\n    if ((this || _global).isPaused === true) {\n      (this || _global).isPaused = false;\n\n      (this || _global).audioController.resume();\n\n      if ((this || _global)._idle) {\n        (this || _global)._idle = false;\n        this.trigger(\"_active\");\n      }\n    }\n  };\n\n  AnimationItem.prototype.pause = function (name) {\n    if (name && (this || _global).name !== name) {\n      return;\n    }\n\n    if ((this || _global).isPaused === false) {\n      (this || _global).isPaused = true;\n      (this || _global)._idle = true;\n      this.trigger(\"_idle\");\n\n      (this || _global).audioController.pause();\n    }\n  };\n\n  AnimationItem.prototype.togglePause = function (name) {\n    if (name && (this || _global).name !== name) {\n      return;\n    }\n\n    if ((this || _global).isPaused === true) {\n      this.play();\n    } else {\n      this.pause();\n    }\n  };\n\n  AnimationItem.prototype.stop = function (name) {\n    if (name && (this || _global).name !== name) {\n      return;\n    }\n\n    this.pause();\n    (this || _global).playCount = 0;\n    (this || _global)._completedLoop = false;\n    this.setCurrentRawFrameValue(0);\n  };\n\n  AnimationItem.prototype.getMarkerData = function (markerName) {\n    var marker;\n\n    for (var i = 0; i < (this || _global).markers.length; i += 1) {\n      marker = (this || _global).markers[i];\n\n      if (marker.payload && marker.payload.name === markerName) {\n        return marker;\n      }\n    }\n\n    return null;\n  };\n\n  AnimationItem.prototype.goToAndStop = function (value, isFrame, name) {\n    if (name && (this || _global).name !== name) {\n      return;\n    }\n\n    var numValue = Number(value);\n\n    if (isNaN(numValue)) {\n      var marker = this.getMarkerData(value);\n\n      if (marker) {\n        this.goToAndStop(marker.time, true);\n      }\n    } else if (isFrame) {\n      this.setCurrentRawFrameValue(value);\n    } else {\n      this.setCurrentRawFrameValue(value * (this || _global).frameModifier);\n    }\n\n    this.pause();\n  };\n\n  AnimationItem.prototype.goToAndPlay = function (value, isFrame, name) {\n    if (name && (this || _global).name !== name) {\n      return;\n    }\n\n    var numValue = Number(value);\n\n    if (isNaN(numValue)) {\n      var marker = this.getMarkerData(value);\n\n      if (marker) {\n        if (!marker.duration) {\n          this.goToAndStop(marker.time, true);\n        } else {\n          this.playSegments([marker.time, marker.time + marker.duration], true);\n        }\n      }\n    } else {\n      this.goToAndStop(numValue, isFrame, name);\n    }\n\n    this.play();\n  };\n\n  AnimationItem.prototype.advanceTime = function (value) {\n    if ((this || _global).isPaused === true || (this || _global).isLoaded === false) {\n      return;\n    }\n\n    var nextValue = (this || _global).currentRawFrame + value * (this || _global).frameModifier;\n    var _isComplete = false; // Checking if nextValue > totalFrames - 1 for addressing non looping and looping animations.\n    // If animation won't loop, it should stop at totalFrames - 1. If it will loop it should complete the last frame and then loop.\n\n    if (nextValue >= (this || _global).totalFrames - 1 && (this || _global).frameModifier > 0) {\n      if (!(this || _global).loop || (this || _global).playCount === (this || _global).loop) {\n        if (!this.checkSegments(nextValue > (this || _global).totalFrames ? nextValue % (this || _global).totalFrames : 0)) {\n          _isComplete = true;\n          nextValue = (this || _global).totalFrames - 1;\n        }\n      } else if (nextValue >= (this || _global).totalFrames) {\n        (this || _global).playCount += 1;\n\n        if (!this.checkSegments(nextValue % (this || _global).totalFrames)) {\n          this.setCurrentRawFrameValue(nextValue % (this || _global).totalFrames);\n          (this || _global)._completedLoop = true;\n          this.trigger(\"loopComplete\");\n        }\n      } else {\n        this.setCurrentRawFrameValue(nextValue);\n      }\n    } else if (nextValue < 0) {\n      if (!this.checkSegments(nextValue % (this || _global).totalFrames)) {\n        if ((this || _global).loop && !((this || _global).playCount-- <= 0 && (this || _global).loop !== true)) {\n          // eslint-disable-line no-plusplus\n          this.setCurrentRawFrameValue((this || _global).totalFrames + nextValue % (this || _global).totalFrames);\n\n          if (!(this || _global)._completedLoop) {\n            (this || _global)._completedLoop = true;\n          } else {\n            this.trigger(\"loopComplete\");\n          }\n        } else {\n          _isComplete = true;\n          nextValue = 0;\n        }\n      }\n    } else {\n      this.setCurrentRawFrameValue(nextValue);\n    }\n\n    if (_isComplete) {\n      this.setCurrentRawFrameValue(nextValue);\n      this.pause();\n      this.trigger(\"complete\");\n    }\n  };\n\n  AnimationItem.prototype.adjustSegment = function (arr, offset) {\n    (this || _global).playCount = 0;\n\n    if (arr[1] < arr[0]) {\n      if ((this || _global).frameModifier > 0) {\n        if ((this || _global).playSpeed < 0) {\n          this.setSpeed(-(this || _global).playSpeed);\n        } else {\n          this.setDirection(-1);\n        }\n      }\n\n      (this || _global).totalFrames = arr[0] - arr[1];\n      (this || _global).timeCompleted = (this || _global).totalFrames;\n      (this || _global).firstFrame = arr[1];\n      this.setCurrentRawFrameValue((this || _global).totalFrames - 0.001 - offset);\n    } else if (arr[1] > arr[0]) {\n      if ((this || _global).frameModifier < 0) {\n        if ((this || _global).playSpeed < 0) {\n          this.setSpeed(-(this || _global).playSpeed);\n        } else {\n          this.setDirection(1);\n        }\n      }\n\n      (this || _global).totalFrames = arr[1] - arr[0];\n      (this || _global).timeCompleted = (this || _global).totalFrames;\n      (this || _global).firstFrame = arr[0];\n      this.setCurrentRawFrameValue(0.001 + offset);\n    }\n\n    this.trigger(\"segmentStart\");\n  };\n\n  AnimationItem.prototype.setSegment = function (init, end) {\n    var pendingFrame = -1;\n\n    if ((this || _global).isPaused) {\n      if ((this || _global).currentRawFrame + (this || _global).firstFrame < init) {\n        pendingFrame = init;\n      } else if ((this || _global).currentRawFrame + (this || _global).firstFrame > end) {\n        pendingFrame = end - init;\n      }\n    }\n\n    (this || _global).firstFrame = init;\n    (this || _global).totalFrames = end - init;\n    (this || _global).timeCompleted = (this || _global).totalFrames;\n\n    if (pendingFrame !== -1) {\n      this.goToAndStop(pendingFrame, true);\n    }\n  };\n\n  AnimationItem.prototype.playSegments = function (arr, forceFlag) {\n    if (forceFlag) {\n      (this || _global).segments.length = 0;\n    }\n\n    if (typeof arr[0] === \"object\") {\n      var i;\n      var len = arr.length;\n\n      for (i = 0; i < len; i += 1) {\n        (this || _global).segments.push(arr[i]);\n      }\n    } else {\n      (this || _global).segments.push(arr);\n    }\n\n    if ((this || _global).segments.length && forceFlag) {\n      this.adjustSegment((this || _global).segments.shift(), 0);\n    }\n\n    if ((this || _global).isPaused) {\n      this.play();\n    }\n  };\n\n  AnimationItem.prototype.resetSegments = function (forceFlag) {\n    (this || _global).segments.length = 0;\n\n    (this || _global).segments.push([(this || _global).animationData.ip, (this || _global).animationData.op]); // this.segments.push([this.animationData.ip*this.frameRate,Math.floor(this.animationData.op - this.animationData.ip+this.animationData.ip*this.frameRate)]);\n\n\n    if (forceFlag) {\n      this.checkSegments(0);\n    }\n  };\n\n  AnimationItem.prototype.checkSegments = function (offset) {\n    if ((this || _global).segments.length) {\n      this.adjustSegment((this || _global).segments.shift(), offset);\n      return true;\n    }\n\n    return false;\n  };\n\n  AnimationItem.prototype.destroy = function (name) {\n    if (name && (this || _global).name !== name || !(this || _global).renderer) {\n      return;\n    }\n\n    (this || _global).renderer.destroy();\n\n    (this || _global).imagePreloader.destroy();\n\n    this.trigger(\"destroy\");\n    (this || _global)._cbs = null;\n    (this || _global).onEnterFrame = null;\n    (this || _global).onLoopComplete = null;\n    (this || _global).onComplete = null;\n    (this || _global).onSegmentStart = null;\n    (this || _global).onDestroy = null;\n    (this || _global).renderer = null;\n    (this || _global).renderer = null;\n    (this || _global).imagePreloader = null;\n    (this || _global).projectInterface = null;\n  };\n\n  AnimationItem.prototype.setCurrentRawFrameValue = function (value) {\n    (this || _global).currentRawFrame = value;\n    this.gotoFrame();\n  };\n\n  AnimationItem.prototype.setSpeed = function (val) {\n    (this || _global).playSpeed = val;\n    this.updaFrameModifier();\n  };\n\n  AnimationItem.prototype.setDirection = function (val) {\n    (this || _global).playDirection = val < 0 ? -1 : 1;\n    this.updaFrameModifier();\n  };\n\n  AnimationItem.prototype.setVolume = function (val, name) {\n    if (name && (this || _global).name !== name) {\n      return;\n    }\n\n    (this || _global).audioController.setVolume(val);\n  };\n\n  AnimationItem.prototype.getVolume = function () {\n    return (this || _global).audioController.getVolume();\n  };\n\n  AnimationItem.prototype.mute = function (name) {\n    if (name && (this || _global).name !== name) {\n      return;\n    }\n\n    (this || _global).audioController.mute();\n  };\n\n  AnimationItem.prototype.unmute = function (name) {\n    if (name && (this || _global).name !== name) {\n      return;\n    }\n\n    (this || _global).audioController.unmute();\n  };\n\n  AnimationItem.prototype.updaFrameModifier = function () {\n    (this || _global).frameModifier = (this || _global).frameMult * (this || _global).playSpeed * (this || _global).playDirection;\n\n    (this || _global).audioController.setRate((this || _global).playSpeed * (this || _global).playDirection);\n  };\n\n  AnimationItem.prototype.getPath = function () {\n    return (this || _global).path;\n  };\n\n  AnimationItem.prototype.getAssetsPath = function (assetData) {\n    var path = \"\";\n\n    if (assetData.e) {\n      path = assetData.p;\n    } else if ((this || _global).assetsPath) {\n      var imagePath = assetData.p;\n\n      if (imagePath.indexOf(\"images/\") !== -1) {\n        imagePath = imagePath.split(\"/\")[1];\n      }\n\n      path = (this || _global).assetsPath + imagePath;\n    } else {\n      path = (this || _global).path;\n      path += assetData.u ? assetData.u : \"\";\n      path += assetData.p;\n    }\n\n    return path;\n  };\n\n  AnimationItem.prototype.getAssetData = function (id) {\n    var i = 0;\n    var len = (this || _global).assets.length;\n\n    while (i < len) {\n      if (id === (this || _global).assets[i].id) {\n        return (this || _global).assets[i];\n      }\n\n      i += 1;\n    }\n\n    return null;\n  };\n\n  AnimationItem.prototype.hide = function () {\n    (this || _global).renderer.hide();\n  };\n\n  AnimationItem.prototype.show = function () {\n    (this || _global).renderer.show();\n  };\n\n  AnimationItem.prototype.getDuration = function (isFrame) {\n    return isFrame ? (this || _global).totalFrames : (this || _global).totalFrames / (this || _global).frameRate;\n  };\n\n  AnimationItem.prototype.trigger = function (name) {\n    if ((this || _global)._cbs && (this || _global)._cbs[name]) {\n      switch (name) {\n        case \"enterFrame\":\n          this.triggerEvent(name, new BMEnterFrameEvent(name, (this || _global).currentFrame, (this || _global).totalFrames, (this || _global).frameModifier));\n          break;\n\n        case \"loopComplete\":\n          this.triggerEvent(name, new BMCompleteLoopEvent(name, (this || _global).loop, (this || _global).playCount, (this || _global).frameMult));\n          break;\n\n        case \"complete\":\n          this.triggerEvent(name, new BMCompleteEvent(name, (this || _global).frameMult));\n          break;\n\n        case \"segmentStart\":\n          this.triggerEvent(name, new BMSegmentStartEvent(name, (this || _global).firstFrame, (this || _global).totalFrames));\n          break;\n\n        case \"destroy\":\n          this.triggerEvent(name, new BMDestroyEvent(name, this || _global));\n          break;\n\n        default:\n          this.triggerEvent(name);\n      }\n    }\n\n    if (name === \"enterFrame\" && (this || _global).onEnterFrame) {\n      (this || _global).onEnterFrame.call(this || _global, new BMEnterFrameEvent(name, (this || _global).currentFrame, (this || _global).totalFrames, (this || _global).frameMult));\n    }\n\n    if (name === \"loopComplete\" && (this || _global).onLoopComplete) {\n      (this || _global).onLoopComplete.call(this || _global, new BMCompleteLoopEvent(name, (this || _global).loop, (this || _global).playCount, (this || _global).frameMult));\n    }\n\n    if (name === \"complete\" && (this || _global).onComplete) {\n      (this || _global).onComplete.call(this || _global, new BMCompleteEvent(name, (this || _global).frameMult));\n    }\n\n    if (name === \"segmentStart\" && (this || _global).onSegmentStart) {\n      (this || _global).onSegmentStart.call(this || _global, new BMSegmentStartEvent(name, (this || _global).firstFrame, (this || _global).totalFrames));\n    }\n\n    if (name === \"destroy\" && (this || _global).onDestroy) {\n      (this || _global).onDestroy.call(this || _global, new BMDestroyEvent(name, this || _global));\n    }\n  };\n\n  AnimationItem.prototype.triggerRenderFrameError = function (nativeError) {\n    var error = new BMRenderFrameErrorEvent(nativeError, (this || _global).currentFrame);\n    this.triggerEvent(\"error\", error);\n\n    if ((this || _global).onError) {\n      (this || _global).onError.call(this || _global, error);\n    }\n  };\n\n  AnimationItem.prototype.triggerConfigError = function (nativeError) {\n    var error = new BMConfigErrorEvent(nativeError, (this || _global).currentFrame);\n    this.triggerEvent(\"error\", error);\n\n    if ((this || _global).onError) {\n      (this || _global).onError.call(this || _global, error);\n    }\n  };\n  /* global CompExpressionInterface, expressionsPlugin: writable */\n\n  /* exported expressionsPlugin */\n\n\n  var Expressions = function () {\n    var ob = {};\n    ob.initExpressions = initExpressions;\n\n    function initExpressions(animation) {\n      var stackCount = 0;\n      var registers = [];\n\n      function pushExpression() {\n        stackCount += 1;\n      }\n\n      function popExpression() {\n        stackCount -= 1;\n\n        if (stackCount === 0) {\n          releaseInstances();\n        }\n      }\n\n      function registerExpressionProperty(expression) {\n        if (registers.indexOf(expression) === -1) {\n          registers.push(expression);\n        }\n      }\n\n      function releaseInstances() {\n        var i;\n        var len = registers.length;\n\n        for (i = 0; i < len; i += 1) {\n          registers[i].release();\n        }\n\n        registers.length = 0;\n      }\n\n      animation.renderer.compInterface = CompExpressionInterface(animation.renderer);\n      animation.renderer.globalData.projectInterface.registerComposition(animation.renderer);\n      animation.renderer.globalData.pushExpression = pushExpression;\n      animation.renderer.globalData.popExpression = popExpression;\n      animation.renderer.globalData.registerExpressionProperty = registerExpressionProperty;\n    }\n\n    return ob;\n  }();\n\n  expressionsPlugin = Expressions;\n  /* eslint-disable camelcase, no-unused-vars */\n\n  /* global BMMath, BezierFactory, createTypedArray, degToRads, shapePool */\n\n  var ExpressionManager = function () {\n    'use strict';\n\n    var ob = {};\n    var Math = BMMath;\n    var window = null;\n    var document = null;\n\n    function $bm_isInstanceOfArray(arr) {\n      return arr.constructor === Array || arr.constructor === Float32Array;\n    }\n\n    function isNumerable(tOfV, v) {\n      return tOfV === \"number\" || tOfV === \"boolean\" || tOfV === \"string\" || v instanceof Number;\n    }\n\n    function $bm_neg(a) {\n      var tOfA = typeof a;\n\n      if (tOfA === \"number\" || tOfA === \"boolean\" || a instanceof Number) {\n        return -a;\n      }\n\n      if ($bm_isInstanceOfArray(a)) {\n        var i;\n        var lenA = a.length;\n        var retArr = [];\n\n        for (i = 0; i < lenA; i += 1) {\n          retArr[i] = -a[i];\n        }\n\n        return retArr;\n      }\n\n      if (a.propType) {\n        return a.v;\n      }\n\n      return -a;\n    }\n\n    var easeInBez = BezierFactory.getBezierEasing(0.333, 0, 0.833, 0.833, \"easeIn\").get;\n    var easeOutBez = BezierFactory.getBezierEasing(0.167, 0.167, 0.667, 1, \"easeOut\").get;\n    var easeInOutBez = BezierFactory.getBezierEasing(0.33, 0, 0.667, 1, \"easeInOut\").get;\n\n    function sum(a, b) {\n      var tOfA = typeof a;\n      var tOfB = typeof b;\n\n      if (tOfA === \"string\" || tOfB === \"string\") {\n        return a + b;\n      }\n\n      if (isNumerable(tOfA, a) && isNumerable(tOfB, b)) {\n        return a + b;\n      }\n\n      if ($bm_isInstanceOfArray(a) && isNumerable(tOfB, b)) {\n        a = a.slice(0);\n        a[0] += b;\n        return a;\n      }\n\n      if (isNumerable(tOfA, a) && $bm_isInstanceOfArray(b)) {\n        b = b.slice(0);\n        b[0] = a + b[0];\n        return b;\n      }\n\n      if ($bm_isInstanceOfArray(a) && $bm_isInstanceOfArray(b)) {\n        var i = 0;\n        var lenA = a.length;\n        var lenB = b.length;\n        var retArr = [];\n\n        while (i < lenA || i < lenB) {\n          if ((typeof a[i] === \"number\" || a[i] instanceof Number) && (typeof b[i] === \"number\" || b[i] instanceof Number)) {\n            retArr[i] = a[i] + b[i];\n          } else {\n            retArr[i] = b[i] === undefined ? a[i] : a[i] || b[i];\n          }\n\n          i += 1;\n        }\n\n        return retArr;\n      }\n\n      return 0;\n    }\n\n    var add = sum;\n\n    function sub(a, b) {\n      var tOfA = typeof a;\n      var tOfB = typeof b;\n\n      if (isNumerable(tOfA, a) && isNumerable(tOfB, b)) {\n        if (tOfA === \"string\") {\n          a = parseInt(a, 10);\n        }\n\n        if (tOfB === \"string\") {\n          b = parseInt(b, 10);\n        }\n\n        return a - b;\n      }\n\n      if ($bm_isInstanceOfArray(a) && isNumerable(tOfB, b)) {\n        a = a.slice(0);\n        a[0] -= b;\n        return a;\n      }\n\n      if (isNumerable(tOfA, a) && $bm_isInstanceOfArray(b)) {\n        b = b.slice(0);\n        b[0] = a - b[0];\n        return b;\n      }\n\n      if ($bm_isInstanceOfArray(a) && $bm_isInstanceOfArray(b)) {\n        var i = 0;\n        var lenA = a.length;\n        var lenB = b.length;\n        var retArr = [];\n\n        while (i < lenA || i < lenB) {\n          if ((typeof a[i] === \"number\" || a[i] instanceof Number) && (typeof b[i] === \"number\" || b[i] instanceof Number)) {\n            retArr[i] = a[i] - b[i];\n          } else {\n            retArr[i] = b[i] === undefined ? a[i] : a[i] || b[i];\n          }\n\n          i += 1;\n        }\n\n        return retArr;\n      }\n\n      return 0;\n    }\n\n    function mul(a, b) {\n      var tOfA = typeof a;\n      var tOfB = typeof b;\n      var arr;\n\n      if (isNumerable(tOfA, a) && isNumerable(tOfB, b)) {\n        return a * b;\n      }\n\n      var i;\n      var len;\n\n      if ($bm_isInstanceOfArray(a) && isNumerable(tOfB, b)) {\n        len = a.length;\n        arr = createTypedArray(\"float32\", len);\n\n        for (i = 0; i < len; i += 1) {\n          arr[i] = a[i] * b;\n        }\n\n        return arr;\n      }\n\n      if (isNumerable(tOfA, a) && $bm_isInstanceOfArray(b)) {\n        len = b.length;\n        arr = createTypedArray(\"float32\", len);\n\n        for (i = 0; i < len; i += 1) {\n          arr[i] = a * b[i];\n        }\n\n        return arr;\n      }\n\n      return 0;\n    }\n\n    function div(a, b) {\n      var tOfA = typeof a;\n      var tOfB = typeof b;\n      var arr;\n\n      if (isNumerable(tOfA, a) && isNumerable(tOfB, b)) {\n        return a / b;\n      }\n\n      var i;\n      var len;\n\n      if ($bm_isInstanceOfArray(a) && isNumerable(tOfB, b)) {\n        len = a.length;\n        arr = createTypedArray(\"float32\", len);\n\n        for (i = 0; i < len; i += 1) {\n          arr[i] = a[i] / b;\n        }\n\n        return arr;\n      }\n\n      if (isNumerable(tOfA, a) && $bm_isInstanceOfArray(b)) {\n        len = b.length;\n        arr = createTypedArray(\"float32\", len);\n\n        for (i = 0; i < len; i += 1) {\n          arr[i] = a / b[i];\n        }\n\n        return arr;\n      }\n\n      return 0;\n    }\n\n    function mod(a, b) {\n      if (typeof a === \"string\") {\n        a = parseInt(a, 10);\n      }\n\n      if (typeof b === \"string\") {\n        b = parseInt(b, 10);\n      }\n\n      return a % b;\n    }\n\n    var $bm_sum = sum;\n    var $bm_sub = sub;\n    var $bm_mul = mul;\n    var $bm_div = div;\n    var $bm_mod = mod;\n\n    function clamp(num, min, max) {\n      if (min > max) {\n        var mm = max;\n        max = min;\n        min = mm;\n      }\n\n      return Math.min(Math.max(num, min), max);\n    }\n\n    function radiansToDegrees(val) {\n      return val / degToRads;\n    }\n\n    var radians_to_degrees = radiansToDegrees;\n\n    function degreesToRadians(val) {\n      return val * degToRads;\n    }\n\n    var degrees_to_radians = radiansToDegrees;\n    var helperLengthArray = [0, 0, 0, 0, 0, 0];\n\n    function length(arr1, arr2) {\n      if (typeof arr1 === \"number\" || arr1 instanceof Number) {\n        arr2 = arr2 || 0;\n        return Math.abs(arr1 - arr2);\n      }\n\n      if (!arr2) {\n        arr2 = helperLengthArray;\n      }\n\n      var i;\n      var len = Math.min(arr1.length, arr2.length);\n      var addedLength = 0;\n\n      for (i = 0; i < len; i += 1) {\n        addedLength += Math.pow(arr2[i] - arr1[i], 2);\n      }\n\n      return Math.sqrt(addedLength);\n    }\n\n    function normalize(vec) {\n      return div(vec, length(vec));\n    }\n\n    function rgbToHsl(val) {\n      var r = val[0];\n      var g = val[1];\n      var b = val[2];\n      var max = Math.max(r, g, b);\n      var min = Math.min(r, g, b);\n      var h;\n      var s;\n      var l = (max + min) / 2;\n\n      if (max === min) {\n        h = 0; // achromatic\n\n        s = 0; // achromatic\n      } else {\n        var d = max - min;\n        s = l > 0.5 ? d / (2 - max - min) : d / (max + min);\n\n        switch (max) {\n          case r:\n            h = (g - b) / d + (g < b ? 6 : 0);\n            break;\n\n          case g:\n            h = (b - r) / d + 2;\n            break;\n\n          case b:\n            h = (r - g) / d + 4;\n            break;\n\n          default:\n            break;\n        }\n\n        h /= 6;\n      }\n\n      return [h, s, l, val[3]];\n    }\n\n    function hue2rgb(p, q, t) {\n      if (t < 0) t += 1;\n      if (t > 1) t -= 1;\n      if (t < 1 / 6) return p + (q - p) * 6 * t;\n      if (t < 1 / 2) return q;\n      if (t < 2 / 3) return p + (q - p) * (2 / 3 - t) * 6;\n      return p;\n    }\n\n    function hslToRgb(val) {\n      var h = val[0];\n      var s = val[1];\n      var l = val[2];\n      var r;\n      var g;\n      var b;\n\n      if (s === 0) {\n        r = l; // achromatic\n\n        b = l; // achromatic\n\n        g = l; // achromatic\n      } else {\n        var q = l < 0.5 ? l * (1 + s) : l + s - l * s;\n        var p = 2 * l - q;\n        r = hue2rgb(p, q, h + 1 / 3);\n        g = hue2rgb(p, q, h);\n        b = hue2rgb(p, q, h - 1 / 3);\n      }\n\n      return [r, g, b, val[3]];\n    }\n\n    function linear(t, tMin, tMax, value1, value2) {\n      if (value1 === undefined || value2 === undefined) {\n        value1 = tMin;\n        value2 = tMax;\n        tMin = 0;\n        tMax = 1;\n      }\n\n      if (tMax < tMin) {\n        var _tMin = tMax;\n        tMax = tMin;\n        tMin = _tMin;\n      }\n\n      if (t <= tMin) {\n        return value1;\n      }\n\n      if (t >= tMax) {\n        return value2;\n      }\n\n      var perc = tMax === tMin ? 0 : (t - tMin) / (tMax - tMin);\n\n      if (!value1.length) {\n        return value1 + (value2 - value1) * perc;\n      }\n\n      var i;\n      var len = value1.length;\n      var arr = createTypedArray(\"float32\", len);\n\n      for (i = 0; i < len; i += 1) {\n        arr[i] = value1[i] + (value2[i] - value1[i]) * perc;\n      }\n\n      return arr;\n    }\n\n    function random(min, max) {\n      if (max === undefined) {\n        if (min === undefined) {\n          min = 0;\n          max = 1;\n        } else {\n          max = min;\n          min = undefined;\n        }\n      }\n\n      if (max.length) {\n        var i;\n        var len = max.length;\n\n        if (!min) {\n          min = createTypedArray(\"float32\", len);\n        }\n\n        var arr = createTypedArray(\"float32\", len);\n        var rnd = BMMath.random();\n\n        for (i = 0; i < len; i += 1) {\n          arr[i] = min[i] + rnd * (max[i] - min[i]);\n        }\n\n        return arr;\n      }\n\n      if (min === undefined) {\n        min = 0;\n      }\n\n      var rndm = BMMath.random();\n      return min + rndm * (max - min);\n    }\n\n    function createPath(points, inTangents, outTangents, closed) {\n      var i;\n      var len = points.length;\n      var path = shapePool.newElement();\n      path.setPathData(!!closed, len);\n      var arrPlaceholder = [0, 0];\n      var inVertexPoint;\n      var outVertexPoint;\n\n      for (i = 0; i < len; i += 1) {\n        inVertexPoint = inTangents && inTangents[i] ? inTangents[i] : arrPlaceholder;\n        outVertexPoint = outTangents && outTangents[i] ? outTangents[i] : arrPlaceholder;\n        path.setTripleAt(points[i][0], points[i][1], outVertexPoint[0] + points[i][0], outVertexPoint[1] + points[i][1], inVertexPoint[0] + points[i][0], inVertexPoint[1] + points[i][1], i, true);\n      }\n\n      return path;\n    }\n\n    function initiateExpression(elem, data, property) {\n      var val = data.x;\n      var needsVelocity = /velocity(?![\\w\\d])/.test(val);\n\n      var _needsRandom = val.indexOf(\"random\") !== -1;\n\n      var elemType = elem.data.ty;\n      var transform;\n      var $bm_transform;\n      var content;\n      var effect;\n      var thisProperty = property;\n      thisProperty.valueAtTime = thisProperty.getValueAtTime;\n      Object.defineProperty(thisProperty, \"value\", {\n        get: function () {\n          return thisProperty.v;\n        }\n      });\n      elem.comp.frameDuration = 1 / elem.comp.globalData.frameRate;\n      elem.comp.displayStartTime = 0;\n      var inPoint = elem.data.ip / elem.comp.globalData.frameRate;\n      var outPoint = elem.data.op / elem.comp.globalData.frameRate;\n      var width = elem.data.sw ? elem.data.sw : 0;\n      var height = elem.data.sh ? elem.data.sh : 0;\n      var name = elem.data.nm;\n      var loopIn;\n      var loop_in;\n      var loopOut;\n      var loop_out;\n      var smooth;\n      var toWorld;\n      var fromWorld;\n      var fromComp;\n      var toComp;\n      var fromCompToSurface;\n      var position;\n      var rotation;\n      var anchorPoint;\n      var scale;\n      var thisLayer;\n      var thisComp;\n      var mask;\n      var valueAtTime;\n      var velocityAtTime;\n      var scoped_bm_rt;\n      var expression_function = eval(\"[function _expression_function(){\" + val + \";scoped_bm_rt=$bm_rt}]\")[0]; // eslint-disable-line no-eval\n\n      var numKeys = property.kf ? data.k.length : 0;\n      var active = !(this || _global).data || (this || _global).data.hd !== true;\n\n      var wiggle = function wiggle(freq, amp) {\n        var iWiggle;\n        var j;\n        var lenWiggle = (this || _global).pv.length ? (this || _global).pv.length : 1;\n        var addedAmps = createTypedArray(\"float32\", lenWiggle);\n        freq = 5;\n        var iterations = Math.floor(time * freq);\n        iWiggle = 0;\n        j = 0;\n\n        while (iWiggle < iterations) {\n          // var rnd = BMMath.random();\n          for (j = 0; j < lenWiggle; j += 1) {\n            addedAmps[j] += -amp + amp * 2 * BMMath.random(); // addedAmps[j] += -amp + amp*2*rnd;\n          }\n\n          iWiggle += 1;\n        } // var rnd2 = BMMath.random();\n\n\n        var periods = time * freq;\n        var perc = periods - Math.floor(periods);\n        var arr = createTypedArray(\"float32\", lenWiggle);\n\n        if (lenWiggle > 1) {\n          for (j = 0; j < lenWiggle; j += 1) {\n            arr[j] = (this || _global).pv[j] + addedAmps[j] + (-amp + amp * 2 * BMMath.random()) * perc; // arr[j] = this.pv[j] + addedAmps[j] + (-amp + amp*2*rnd)*perc;\n            // arr[i] = this.pv[i] + addedAmp + amp1*perc + amp2*(1-perc);\n          }\n\n          return arr;\n        }\n\n        return (this || _global).pv + addedAmps[0] + (-amp + amp * 2 * BMMath.random()) * perc;\n      }.bind(this || _global);\n\n      if (thisProperty.loopIn) {\n        loopIn = thisProperty.loopIn.bind(thisProperty);\n        loop_in = loopIn;\n      }\n\n      if (thisProperty.loopOut) {\n        loopOut = thisProperty.loopOut.bind(thisProperty);\n        loop_out = loopOut;\n      }\n\n      if (thisProperty.smooth) {\n        smooth = thisProperty.smooth.bind(thisProperty);\n      }\n\n      function loopInDuration(type, duration) {\n        return loopIn(type, duration, true);\n      }\n\n      function loopOutDuration(type, duration) {\n        return loopOut(type, duration, true);\n      }\n\n      if ((this || _global).getValueAtTime) {\n        valueAtTime = (this || _global).getValueAtTime.bind(this || _global);\n      }\n\n      if ((this || _global).getVelocityAtTime) {\n        velocityAtTime = (this || _global).getVelocityAtTime.bind(this || _global);\n      }\n\n      var comp = elem.comp.globalData.projectInterface.bind(elem.comp.globalData.projectInterface);\n\n      function lookAt(elem1, elem2) {\n        var fVec = [elem2[0] - elem1[0], elem2[1] - elem1[1], elem2[2] - elem1[2]];\n        var pitch = Math.atan2(fVec[0], Math.sqrt(fVec[1] * fVec[1] + fVec[2] * fVec[2])) / degToRads;\n        var yaw = -Math.atan2(fVec[1], fVec[2]) / degToRads;\n        return [yaw, pitch, 0];\n      }\n\n      function easeOut(t, tMin, tMax, val1, val2) {\n        return applyEase(easeOutBez, t, tMin, tMax, val1, val2);\n      }\n\n      function easeIn(t, tMin, tMax, val1, val2) {\n        return applyEase(easeInBez, t, tMin, tMax, val1, val2);\n      }\n\n      function ease(t, tMin, tMax, val1, val2) {\n        return applyEase(easeInOutBez, t, tMin, tMax, val1, val2);\n      }\n\n      function applyEase(fn, t, tMin, tMax, val1, val2) {\n        if (val1 === undefined) {\n          val1 = tMin;\n          val2 = tMax;\n        } else {\n          t = (t - tMin) / (tMax - tMin);\n        }\n\n        if (t > 1) {\n          t = 1;\n        } else if (t < 0) {\n          t = 0;\n        }\n\n        var mult = fn(t);\n\n        if ($bm_isInstanceOfArray(val1)) {\n          var iKey;\n          var lenKey = val1.length;\n          var arr = createTypedArray(\"float32\", lenKey);\n\n          for (iKey = 0; iKey < lenKey; iKey += 1) {\n            arr[iKey] = (val2[iKey] - val1[iKey]) * mult + val1[iKey];\n          }\n\n          return arr;\n        }\n\n        return (val2 - val1) * mult + val1;\n      }\n\n      function nearestKey(time) {\n        var iKey;\n        var lenKey = data.k.length;\n        var index;\n        var keyTime;\n\n        if (!data.k.length || typeof data.k[0] === \"number\") {\n          index = 0;\n          keyTime = 0;\n        } else {\n          index = -1;\n          time *= elem.comp.globalData.frameRate;\n\n          if (time < data.k[0].t) {\n            index = 1;\n            keyTime = data.k[0].t;\n          } else {\n            for (iKey = 0; iKey < lenKey - 1; iKey += 1) {\n              if (time === data.k[iKey].t) {\n                index = iKey + 1;\n                keyTime = data.k[iKey].t;\n                break;\n              } else if (time > data.k[iKey].t && time < data.k[iKey + 1].t) {\n                if (time - data.k[iKey].t > data.k[iKey + 1].t - time) {\n                  index = iKey + 2;\n                  keyTime = data.k[iKey + 1].t;\n                } else {\n                  index = iKey + 1;\n                  keyTime = data.k[iKey].t;\n                }\n\n                break;\n              }\n            }\n\n            if (index === -1) {\n              index = iKey + 1;\n              keyTime = data.k[iKey].t;\n            }\n          }\n        }\n\n        var obKey = {};\n        obKey.index = index;\n        obKey.time = keyTime / elem.comp.globalData.frameRate;\n        return obKey;\n      }\n\n      function key(ind) {\n        var obKey;\n        var iKey;\n        var lenKey;\n\n        if (!data.k.length || typeof data.k[0] === \"number\") {\n          throw new Error(\"The property has no keyframe at index \" + ind);\n        }\n\n        ind -= 1;\n        obKey = {\n          time: data.k[ind].t / elem.comp.globalData.frameRate,\n          value: []\n        };\n        var arr = Object.prototype.hasOwnProperty.call(data.k[ind], \"s\") ? data.k[ind].s : data.k[ind - 1].e;\n        lenKey = arr.length;\n\n        for (iKey = 0; iKey < lenKey; iKey += 1) {\n          obKey[iKey] = arr[iKey];\n          obKey.value[iKey] = arr[iKey];\n        }\n\n        return obKey;\n      }\n\n      function framesToTime(frames, fps) {\n        if (!fps) {\n          fps = elem.comp.globalData.frameRate;\n        }\n\n        return frames / fps;\n      }\n\n      function timeToFrames(t, fps) {\n        if (!t && t !== 0) {\n          t = time;\n        }\n\n        if (!fps) {\n          fps = elem.comp.globalData.frameRate;\n        }\n\n        return t * fps;\n      }\n\n      function seedRandom(seed) {\n        BMMath.seedrandom(randSeed + seed);\n      }\n\n      function sourceRectAtTime() {\n        return elem.sourceRectAtTime();\n      }\n\n      function substring(init, end) {\n        if (typeof value === \"string\") {\n          if (end === undefined) {\n            return value.substring(init);\n          }\n\n          return value.substring(init, end);\n        }\n\n        return \"\";\n      }\n\n      function substr(init, end) {\n        if (typeof value === \"string\") {\n          if (end === undefined) {\n            return value.substr(init);\n          }\n\n          return value.substr(init, end);\n        }\n\n        return \"\";\n      }\n\n      function posterizeTime(framesPerSecond) {\n        time = framesPerSecond === 0 ? 0 : Math.floor(time * framesPerSecond) / framesPerSecond;\n        value = valueAtTime(time);\n      }\n\n      var time;\n      var velocity;\n      var value;\n      var text;\n      var textIndex;\n      var textTotal;\n      var selectorValue;\n      var index = elem.data.ind;\n      var hasParent = !!(elem.hierarchy && elem.hierarchy.length);\n      var parent;\n      var randSeed = Math.floor(Math.random() * 1000000);\n      var globalData = elem.globalData;\n\n      function executeExpression(_value) {\n        // globalData.pushExpression();\n        value = _value;\n\n        if (_needsRandom) {\n          seedRandom(randSeed);\n        }\n\n        if ((this || _global).frameExpressionId === elem.globalData.frameId && (this || _global).propType !== \"textSelector\") {\n          return value;\n        }\n\n        if ((this || _global).propType === \"textSelector\") {\n          textIndex = (this || _global).textIndex;\n          textTotal = (this || _global).textTotal;\n          selectorValue = (this || _global).selectorValue;\n        }\n\n        if (!thisLayer) {\n          text = elem.layerInterface.text;\n          thisLayer = elem.layerInterface;\n          thisComp = elem.comp.compInterface;\n          toWorld = thisLayer.toWorld.bind(thisLayer);\n          fromWorld = thisLayer.fromWorld.bind(thisLayer);\n          fromComp = thisLayer.fromComp.bind(thisLayer);\n          toComp = thisLayer.toComp.bind(thisLayer);\n          mask = thisLayer.mask ? thisLayer.mask.bind(thisLayer) : null;\n          fromCompToSurface = fromComp;\n        }\n\n        if (!transform) {\n          transform = elem.layerInterface(\"ADBE Transform Group\");\n          $bm_transform = transform;\n\n          if (transform) {\n            anchorPoint = transform.anchorPoint;\n            /* position = transform.position;\r\n                      rotation = transform.rotation;\r\n                      scale = transform.scale; */\n          }\n        }\n\n        if (elemType === 4 && !content) {\n          content = thisLayer(\"ADBE Root Vectors Group\");\n        }\n\n        if (!effect) {\n          effect = thisLayer(4);\n        }\n\n        hasParent = !!(elem.hierarchy && elem.hierarchy.length);\n\n        if (hasParent && !parent) {\n          parent = elem.hierarchy[0].layerInterface;\n        }\n\n        time = (this || _global).comp.renderedFrame / (this || _global).comp.globalData.frameRate;\n\n        if (needsVelocity) {\n          velocity = velocityAtTime(time);\n        }\n\n        expression_function();\n        (this || _global).frameExpressionId = elem.globalData.frameId; // TODO: Check if it's possible to return on ShapeInterface the .v value\n\n        if (scoped_bm_rt.propType === \"shape\") {\n          scoped_bm_rt = scoped_bm_rt.v;\n        } // globalData.popExpression();\n\n\n        return scoped_bm_rt;\n      }\n\n      return executeExpression;\n    }\n\n    ob.initiateExpression = initiateExpression;\n    return ob;\n  }();\n  /* global ExpressionManager, createTypedArray */\n\n  /* exported expressionHelpers */\n\n\n  var expressionHelpers = function () {\n    function searchExpressions(elem, data, prop) {\n      if (data.x) {\n        prop.k = true;\n        prop.x = true;\n        prop.initiateExpression = ExpressionManager.initiateExpression;\n        prop.effectsSequence.push(prop.initiateExpression(elem, data, prop).bind(prop));\n      }\n    }\n\n    function getValueAtTime(frameNum) {\n      frameNum *= (this || _global).elem.globalData.frameRate;\n      frameNum -= (this || _global).offsetTime;\n\n      if (frameNum !== (this || _global)._cachingAtTime.lastFrame) {\n        (this || _global)._cachingAtTime.lastIndex = (this || _global)._cachingAtTime.lastFrame < frameNum ? (this || _global)._cachingAtTime.lastIndex : 0;\n        (this || _global)._cachingAtTime.value = this.interpolateValue(frameNum, (this || _global)._cachingAtTime);\n        (this || _global)._cachingAtTime.lastFrame = frameNum;\n      }\n\n      return (this || _global)._cachingAtTime.value;\n    }\n\n    function getSpeedAtTime(frameNum) {\n      var delta = -0.01;\n      var v1 = this.getValueAtTime(frameNum);\n      var v2 = this.getValueAtTime(frameNum + delta);\n      var speed = 0;\n\n      if (v1.length) {\n        var i;\n\n        for (i = 0; i < v1.length; i += 1) {\n          speed += Math.pow(v2[i] - v1[i], 2);\n        }\n\n        speed = Math.sqrt(speed) * 100;\n      } else {\n        speed = 0;\n      }\n\n      return speed;\n    }\n\n    function getVelocityAtTime(frameNum) {\n      if ((this || _global).vel !== undefined) {\n        return (this || _global).vel;\n      }\n\n      var delta = -0.001; // frameNum += this.elem.data.st;\n\n      var v1 = this.getValueAtTime(frameNum);\n      var v2 = this.getValueAtTime(frameNum + delta);\n      var velocity;\n\n      if (v1.length) {\n        velocity = createTypedArray(\"float32\", v1.length);\n        var i;\n\n        for (i = 0; i < v1.length; i += 1) {\n          // removing frameRate\n          // if needed, don't add it here\n          // velocity[i] = this.elem.globalData.frameRate*((v2[i] - v1[i])/delta);\n          velocity[i] = (v2[i] - v1[i]) / delta;\n        }\n      } else {\n        velocity = (v2 - v1) / delta;\n      }\n\n      return velocity;\n    }\n\n    function getStaticValueAtTime() {\n      return (this || _global).pv;\n    }\n\n    function setGroupProperty(propertyGroup) {\n      (this || _global).propertyGroup = propertyGroup;\n    }\n\n    return {\n      searchExpressions: searchExpressions,\n      getSpeedAtTime: getSpeedAtTime,\n      getVelocityAtTime: getVelocityAtTime,\n      getValueAtTime: getValueAtTime,\n      getStaticValueAtTime: getStaticValueAtTime,\n      setGroupProperty: setGroupProperty\n    };\n  }();\n  /* global createTypedArray, Matrix, TransformPropertyFactory, expressionHelpers, PropertyFactory, expressionHelpers,\r\n  initialDefaultFrame, shapePool, ShapePropertyFactory, bez, extendPrototype, ExpressionManager, createSizedArray */\n\n\n  (function addPropertyDecorator() {\n    function loopOut(type, duration, durationFlag) {\n      if (!(this || _global).k || !(this || _global).keyframes) {\n        return (this || _global).pv;\n      }\n\n      type = type ? type.toLowerCase() : \"\";\n      var currentFrame = (this || _global).comp.renderedFrame;\n      var keyframes = (this || _global).keyframes;\n      var lastKeyFrame = keyframes[keyframes.length - 1].t;\n\n      if (currentFrame <= lastKeyFrame) {\n        return (this || _global).pv;\n      }\n\n      var cycleDuration;\n      var firstKeyFrame;\n\n      if (!durationFlag) {\n        if (!duration || duration > keyframes.length - 1) {\n          duration = keyframes.length - 1;\n        }\n\n        firstKeyFrame = keyframes[keyframes.length - 1 - duration].t;\n        cycleDuration = lastKeyFrame - firstKeyFrame;\n      } else {\n        if (!duration) {\n          cycleDuration = Math.max(0, lastKeyFrame - (this || _global).elem.data.ip);\n        } else {\n          cycleDuration = Math.abs(lastKeyFrame - (this || _global).elem.comp.globalData.frameRate * duration);\n        }\n\n        firstKeyFrame = lastKeyFrame - cycleDuration;\n      }\n\n      var i;\n      var len;\n      var ret;\n\n      if (type === \"pingpong\") {\n        var iterations = Math.floor((currentFrame - firstKeyFrame) / cycleDuration);\n\n        if (iterations % 2 !== 0) {\n          return this.getValueAtTime((cycleDuration - (currentFrame - firstKeyFrame) % cycleDuration + firstKeyFrame) / (this || _global).comp.globalData.frameRate, 0); // eslint-disable-line\n        }\n      } else if (type === \"offset\") {\n        var initV = this.getValueAtTime(firstKeyFrame / (this || _global).comp.globalData.frameRate, 0);\n        var endV = this.getValueAtTime(lastKeyFrame / (this || _global).comp.globalData.frameRate, 0);\n        var current = this.getValueAtTime(((currentFrame - firstKeyFrame) % cycleDuration + firstKeyFrame) / (this || _global).comp.globalData.frameRate, 0); // eslint-disable-line\n\n        var repeats = Math.floor((currentFrame - firstKeyFrame) / cycleDuration);\n\n        if ((this || _global).pv.length) {\n          ret = new Array(initV.length);\n          len = ret.length;\n\n          for (i = 0; i < len; i += 1) {\n            ret[i] = (endV[i] - initV[i]) * repeats + current[i];\n          }\n\n          return ret;\n        }\n\n        return (endV - initV) * repeats + current;\n      } else if (type === \"continue\") {\n        var lastValue = this.getValueAtTime(lastKeyFrame / (this || _global).comp.globalData.frameRate, 0);\n        var nextLastValue = this.getValueAtTime((lastKeyFrame - 0.001) / (this || _global).comp.globalData.frameRate, 0);\n\n        if ((this || _global).pv.length) {\n          ret = new Array(lastValue.length);\n          len = ret.length;\n\n          for (i = 0; i < len; i += 1) {\n            ret[i] = lastValue[i] + (lastValue[i] - nextLastValue[i]) * ((currentFrame - lastKeyFrame) / (this || _global).comp.globalData.frameRate) / 0.0005; // eslint-disable-line\n          }\n\n          return ret;\n        }\n\n        return lastValue + (lastValue - nextLastValue) * ((currentFrame - lastKeyFrame) / 0.001);\n      }\n\n      return this.getValueAtTime(((currentFrame - firstKeyFrame) % cycleDuration + firstKeyFrame) / (this || _global).comp.globalData.frameRate, 0); // eslint-disable-line\n    }\n\n    function loopIn(type, duration, durationFlag) {\n      if (!(this || _global).k) {\n        return (this || _global).pv;\n      }\n\n      type = type ? type.toLowerCase() : \"\";\n      var currentFrame = (this || _global).comp.renderedFrame;\n      var keyframes = (this || _global).keyframes;\n      var firstKeyFrame = keyframes[0].t;\n\n      if (currentFrame >= firstKeyFrame) {\n        return (this || _global).pv;\n      }\n\n      var cycleDuration;\n      var lastKeyFrame;\n\n      if (!durationFlag) {\n        if (!duration || duration > keyframes.length - 1) {\n          duration = keyframes.length - 1;\n        }\n\n        lastKeyFrame = keyframes[duration].t;\n        cycleDuration = lastKeyFrame - firstKeyFrame;\n      } else {\n        if (!duration) {\n          cycleDuration = Math.max(0, (this || _global).elem.data.op - firstKeyFrame);\n        } else {\n          cycleDuration = Math.abs((this || _global).elem.comp.globalData.frameRate * duration);\n        }\n\n        lastKeyFrame = firstKeyFrame + cycleDuration;\n      }\n\n      var i;\n      var len;\n      var ret;\n\n      if (type === \"pingpong\") {\n        var iterations = Math.floor((firstKeyFrame - currentFrame) / cycleDuration);\n\n        if (iterations % 2 === 0) {\n          return this.getValueAtTime(((firstKeyFrame - currentFrame) % cycleDuration + firstKeyFrame) / (this || _global).comp.globalData.frameRate, 0); // eslint-disable-line\n        }\n      } else if (type === \"offset\") {\n        var initV = this.getValueAtTime(firstKeyFrame / (this || _global).comp.globalData.frameRate, 0);\n        var endV = this.getValueAtTime(lastKeyFrame / (this || _global).comp.globalData.frameRate, 0);\n        var current = this.getValueAtTime((cycleDuration - (firstKeyFrame - currentFrame) % cycleDuration + firstKeyFrame) / (this || _global).comp.globalData.frameRate, 0);\n        var repeats = Math.floor((firstKeyFrame - currentFrame) / cycleDuration) + 1;\n\n        if ((this || _global).pv.length) {\n          ret = new Array(initV.length);\n          len = ret.length;\n\n          for (i = 0; i < len; i += 1) {\n            ret[i] = current[i] - (endV[i] - initV[i]) * repeats;\n          }\n\n          return ret;\n        }\n\n        return current - (endV - initV) * repeats;\n      } else if (type === \"continue\") {\n        var firstValue = this.getValueAtTime(firstKeyFrame / (this || _global).comp.globalData.frameRate, 0);\n        var nextFirstValue = this.getValueAtTime((firstKeyFrame + 0.001) / (this || _global).comp.globalData.frameRate, 0);\n\n        if ((this || _global).pv.length) {\n          ret = new Array(firstValue.length);\n          len = ret.length;\n\n          for (i = 0; i < len; i += 1) {\n            ret[i] = firstValue[i] + (firstValue[i] - nextFirstValue[i]) * (firstKeyFrame - currentFrame) / 0.001;\n          }\n\n          return ret;\n        }\n\n        return firstValue + (firstValue - nextFirstValue) * (firstKeyFrame - currentFrame) / 0.001;\n      }\n\n      return this.getValueAtTime((cycleDuration - ((firstKeyFrame - currentFrame) % cycleDuration + firstKeyFrame)) / (this || _global).comp.globalData.frameRate, 0); // eslint-disable-line\n    }\n\n    function smooth(width, samples) {\n      if (!(this || _global).k) {\n        return (this || _global).pv;\n      }\n\n      width = (width || 0.4) * 0.5;\n      samples = Math.floor(samples || 5);\n\n      if (samples <= 1) {\n        return (this || _global).pv;\n      }\n\n      var currentTime = (this || _global).comp.renderedFrame / (this || _global).comp.globalData.frameRate;\n      var initFrame = currentTime - width;\n      var endFrame = currentTime + width;\n      var sampleFrequency = samples > 1 ? (endFrame - initFrame) / (samples - 1) : 1;\n      var i = 0;\n      var j = 0;\n      var value;\n\n      if ((this || _global).pv.length) {\n        value = createTypedArray(\"float32\", (this || _global).pv.length);\n      } else {\n        value = 0;\n      }\n\n      var sampleValue;\n\n      while (i < samples) {\n        sampleValue = this.getValueAtTime(initFrame + i * sampleFrequency);\n\n        if ((this || _global).pv.length) {\n          for (j = 0; j < (this || _global).pv.length; j += 1) {\n            value[j] += sampleValue[j];\n          }\n        } else {\n          value += sampleValue;\n        }\n\n        i += 1;\n      }\n\n      if ((this || _global).pv.length) {\n        for (j = 0; j < (this || _global).pv.length; j += 1) {\n          value[j] /= samples;\n        }\n      } else {\n        value /= samples;\n      }\n\n      return value;\n    }\n\n    function getTransformValueAtTime(time) {\n      if (!(this || _global)._transformCachingAtTime) {\n        (this || _global)._transformCachingAtTime = {\n          v: new Matrix()\n        };\n      } /// /\n\n\n      var matrix = (this || _global)._transformCachingAtTime.v;\n      matrix.cloneFromProps((this || _global).pre.props);\n\n      if ((this || _global).appliedTransformations < 1) {\n        var anchor = (this || _global).a.getValueAtTime(time);\n\n        matrix.translate(-anchor[0] * (this || _global).a.mult, -anchor[1] * (this || _global).a.mult, anchor[2] * (this || _global).a.mult);\n      }\n\n      if ((this || _global).appliedTransformations < 2) {\n        var scale = (this || _global).s.getValueAtTime(time);\n\n        matrix.scale(scale[0] * (this || _global).s.mult, scale[1] * (this || _global).s.mult, scale[2] * (this || _global).s.mult);\n      }\n\n      if ((this || _global).sk && (this || _global).appliedTransformations < 3) {\n        var skew = (this || _global).sk.getValueAtTime(time);\n\n        var skewAxis = (this || _global).sa.getValueAtTime(time);\n\n        matrix.skewFromAxis(-skew * (this || _global).sk.mult, skewAxis * (this || _global).sa.mult);\n      }\n\n      if ((this || _global).r && (this || _global).appliedTransformations < 4) {\n        var rotation = (this || _global).r.getValueAtTime(time);\n\n        matrix.rotate(-rotation * (this || _global).r.mult);\n      } else if (!(this || _global).r && (this || _global).appliedTransformations < 4) {\n        var rotationZ = (this || _global).rz.getValueAtTime(time);\n\n        var rotationY = (this || _global).ry.getValueAtTime(time);\n\n        var rotationX = (this || _global).rx.getValueAtTime(time);\n\n        var orientation = (this || _global).or.getValueAtTime(time);\n\n        matrix.rotateZ(-rotationZ * (this || _global).rz.mult).rotateY(rotationY * (this || _global).ry.mult).rotateX(rotationX * (this || _global).rx.mult).rotateZ(-orientation[2] * (this || _global).or.mult).rotateY(orientation[1] * (this || _global).or.mult).rotateX(orientation[0] * (this || _global).or.mult);\n      }\n\n      if ((this || _global).data.p && (this || _global).data.p.s) {\n        var positionX = (this || _global).px.getValueAtTime(time);\n\n        var positionY = (this || _global).py.getValueAtTime(time);\n\n        if ((this || _global).data.p.z) {\n          var positionZ = (this || _global).pz.getValueAtTime(time);\n\n          matrix.translate(positionX * (this || _global).px.mult, positionY * (this || _global).py.mult, -positionZ * (this || _global).pz.mult);\n        } else {\n          matrix.translate(positionX * (this || _global).px.mult, positionY * (this || _global).py.mult, 0);\n        }\n      } else {\n        var position = (this || _global).p.getValueAtTime(time);\n\n        matrix.translate(position[0] * (this || _global).p.mult, position[1] * (this || _global).p.mult, -position[2] * (this || _global).p.mult);\n      }\n\n      return matrix; /// /\n    }\n\n    function getTransformStaticValueAtTime() {\n      return (this || _global).v.clone(new Matrix());\n    }\n\n    var getTransformProperty = TransformPropertyFactory.getTransformProperty;\n\n    TransformPropertyFactory.getTransformProperty = function (elem, data, container) {\n      var prop = getTransformProperty(elem, data, container);\n\n      if (prop.dynamicProperties.length) {\n        prop.getValueAtTime = getTransformValueAtTime.bind(prop);\n      } else {\n        prop.getValueAtTime = getTransformStaticValueAtTime.bind(prop);\n      }\n\n      prop.setGroupProperty = expressionHelpers.setGroupProperty;\n      return prop;\n    };\n\n    var propertyGetProp = PropertyFactory.getProp;\n\n    PropertyFactory.getProp = function (elem, data, type, mult, container) {\n      var prop = propertyGetProp(elem, data, type, mult, container); // prop.getVelocityAtTime = getVelocityAtTime;\n      // prop.loopOut = loopOut;\n      // prop.loopIn = loopIn;\n\n      if (prop.kf) {\n        prop.getValueAtTime = expressionHelpers.getValueAtTime.bind(prop);\n      } else {\n        prop.getValueAtTime = expressionHelpers.getStaticValueAtTime.bind(prop);\n      }\n\n      prop.setGroupProperty = expressionHelpers.setGroupProperty;\n      prop.loopOut = loopOut;\n      prop.loopIn = loopIn;\n      prop.smooth = smooth;\n      prop.getVelocityAtTime = expressionHelpers.getVelocityAtTime.bind(prop);\n      prop.getSpeedAtTime = expressionHelpers.getSpeedAtTime.bind(prop);\n      prop.numKeys = data.a === 1 ? data.k.length : 0;\n      prop.propertyIndex = data.ix;\n      var value = 0;\n\n      if (type !== 0) {\n        value = createTypedArray(\"float32\", data.a === 1 ? data.k[0].s.length : data.k.length);\n      }\n\n      prop._cachingAtTime = {\n        lastFrame: initialDefaultFrame,\n        lastIndex: 0,\n        value: value\n      };\n      expressionHelpers.searchExpressions(elem, data, prop);\n\n      if (prop.k) {\n        container.addDynamicProperty(prop);\n      }\n\n      return prop;\n    };\n\n    function getShapeValueAtTime(frameNum) {\n      // For now this caching object is created only when needed instead of creating it when the shape is initialized.\n      if (!(this || _global)._cachingAtTime) {\n        (this || _global)._cachingAtTime = {\n          shapeValue: shapePool.clone((this || _global).pv),\n          lastIndex: 0,\n          lastTime: initialDefaultFrame\n        };\n      }\n\n      frameNum *= (this || _global).elem.globalData.frameRate;\n      frameNum -= (this || _global).offsetTime;\n\n      if (frameNum !== (this || _global)._cachingAtTime.lastTime) {\n        (this || _global)._cachingAtTime.lastIndex = (this || _global)._cachingAtTime.lastTime < frameNum ? (this || _global)._caching.lastIndex : 0;\n        (this || _global)._cachingAtTime.lastTime = frameNum;\n        this.interpolateShape(frameNum, (this || _global)._cachingAtTime.shapeValue, (this || _global)._cachingAtTime);\n      }\n\n      return (this || _global)._cachingAtTime.shapeValue;\n    }\n\n    var ShapePropertyConstructorFunction = ShapePropertyFactory.getConstructorFunction();\n    var KeyframedShapePropertyConstructorFunction = ShapePropertyFactory.getKeyframedConstructorFunction();\n\n    function ShapeExpressions() {}\n\n    ShapeExpressions.prototype = {\n      vertices: function (prop, time) {\n        if ((this || _global).k) {\n          this.getValue();\n        }\n\n        var shapePath = (this || _global).v;\n\n        if (time !== undefined) {\n          shapePath = this.getValueAtTime(time, 0);\n        }\n\n        var i;\n        var len = shapePath._length;\n        var vertices = shapePath[prop];\n        var points = shapePath.v;\n        var arr = createSizedArray(len);\n\n        for (i = 0; i < len; i += 1) {\n          if (prop === \"i\" || prop === \"o\") {\n            arr[i] = [vertices[i][0] - points[i][0], vertices[i][1] - points[i][1]];\n          } else {\n            arr[i] = [vertices[i][0], vertices[i][1]];\n          }\n        }\n\n        return arr;\n      },\n      points: function (time) {\n        return this.vertices(\"v\", time);\n      },\n      inTangents: function (time) {\n        return this.vertices(\"i\", time);\n      },\n      outTangents: function (time) {\n        return this.vertices(\"o\", time);\n      },\n      isClosed: function () {\n        return (this || _global).v.c;\n      },\n      pointOnPath: function (perc, time) {\n        var shapePath = (this || _global).v;\n\n        if (time !== undefined) {\n          shapePath = this.getValueAtTime(time, 0);\n        }\n\n        if (!(this || _global)._segmentsLength) {\n          (this || _global)._segmentsLength = bez.getSegmentsLength(shapePath);\n        }\n\n        var segmentsLength = (this || _global)._segmentsLength;\n        var lengths = segmentsLength.lengths;\n        var lengthPos = segmentsLength.totalLength * perc;\n        var i = 0;\n        var len = lengths.length;\n        var accumulatedLength = 0;\n        var pt;\n\n        while (i < len) {\n          if (accumulatedLength + lengths[i].addedLength > lengthPos) {\n            var initIndex = i;\n            var endIndex = shapePath.c && i === len - 1 ? 0 : i + 1;\n            var segmentPerc = (lengthPos - accumulatedLength) / lengths[i].addedLength;\n            pt = bez.getPointInSegment(shapePath.v[initIndex], shapePath.v[endIndex], shapePath.o[initIndex], shapePath.i[endIndex], segmentPerc, lengths[i]);\n            break;\n          } else {\n            accumulatedLength += lengths[i].addedLength;\n          }\n\n          i += 1;\n        }\n\n        if (!pt) {\n          pt = shapePath.c ? [shapePath.v[0][0], shapePath.v[0][1]] : [shapePath.v[shapePath._length - 1][0], shapePath.v[shapePath._length - 1][1]];\n        }\n\n        return pt;\n      },\n      vectorOnPath: function (perc, time, vectorType) {\n        // perc doesn't use triple equality because it can be a Number object as well as a primitive.\n        if (perc == 1) {\n          // eslint-disable-line eqeqeq\n          perc = (this || _global).v.c;\n        } else if (perc == 0) {\n          // eslint-disable-line eqeqeq\n          perc = 0.999;\n        }\n\n        var pt1 = this.pointOnPath(perc, time);\n        var pt2 = this.pointOnPath(perc + 0.001, time);\n        var xLength = pt2[0] - pt1[0];\n        var yLength = pt2[1] - pt1[1];\n        var magnitude = Math.sqrt(Math.pow(xLength, 2) + Math.pow(yLength, 2));\n\n        if (magnitude === 0) {\n          return [0, 0];\n        }\n\n        var unitVector = vectorType === \"tangent\" ? [xLength / magnitude, yLength / magnitude] : [-yLength / magnitude, xLength / magnitude];\n        return unitVector;\n      },\n      tangentOnPath: function (perc, time) {\n        return this.vectorOnPath(perc, time, \"tangent\");\n      },\n      normalOnPath: function (perc, time) {\n        return this.vectorOnPath(perc, time, \"normal\");\n      },\n      setGroupProperty: expressionHelpers.setGroupProperty,\n      getValueAtTime: expressionHelpers.getStaticValueAtTime\n    };\n    extendPrototype([ShapeExpressions], ShapePropertyConstructorFunction);\n    extendPrototype([ShapeExpressions], KeyframedShapePropertyConstructorFunction);\n    KeyframedShapePropertyConstructorFunction.prototype.getValueAtTime = getShapeValueAtTime;\n    KeyframedShapePropertyConstructorFunction.prototype.initiateExpression = ExpressionManager.initiateExpression;\n    var propertyGetShapeProp = ShapePropertyFactory.getShapeProp;\n\n    ShapePropertyFactory.getShapeProp = function (elem, data, type, arr, trims) {\n      var prop = propertyGetShapeProp(elem, data, type, arr, trims);\n      prop.propertyIndex = data.ix;\n      prop.lock = false;\n\n      if (type === 3) {\n        expressionHelpers.searchExpressions(elem, data.pt, prop);\n      } else if (type === 4) {\n        expressionHelpers.searchExpressions(elem, data.ks, prop);\n      }\n\n      if (prop.k) {\n        elem.addDynamicProperty(prop);\n      }\n\n      return prop;\n    };\n  })();\n  /* global ExpressionManager, TextProperty */\n\n\n  (function addDecorator() {\n    function searchExpressions() {\n      if ((this || _global).data.d.x) {\n        (this || _global).calculateExpression = ExpressionManager.initiateExpression.bind(this || _global)((this || _global).elem, (this || _global).data.d, this || _global);\n        this.addEffect((this || _global).getExpressionValue.bind(this || _global));\n        return true;\n      }\n\n      return null;\n    }\n\n    TextProperty.prototype.getExpressionValue = function (currentValue, text) {\n      var newValue = this.calculateExpression(text);\n\n      if (currentValue.t !== newValue) {\n        var newData = {};\n        this.copyData(newData, currentValue);\n        newData.t = newValue.toString();\n        newData.__complete = false;\n        return newData;\n      }\n\n      return currentValue;\n    };\n\n    TextProperty.prototype.searchProperty = function () {\n      var isKeyframed = this.searchKeyframes();\n      var hasExpressions = this.searchExpressions();\n      (this || _global).kf = isKeyframed || hasExpressions;\n      return (this || _global).kf;\n    };\n\n    TextProperty.prototype.searchExpressions = searchExpressions;\n  })();\n  /* global propertyGroupFactory, PropertyInterface */\n\n  /* exported ShapePathInterface */\n\n\n  var ShapePathInterface = function () {\n    return function pathInterfaceFactory(shape, view, propertyGroup) {\n      var prop = view.sh;\n\n      function interfaceFunction(val) {\n        if (val === \"Shape\" || val === \"shape\" || val === \"Path\" || val === \"path\" || val === \"ADBE Vector Shape\" || val === 2) {\n          return interfaceFunction.path;\n        }\n\n        return null;\n      }\n\n      var _propertyGroup = propertyGroupFactory(interfaceFunction, propertyGroup);\n\n      prop.setGroupProperty(PropertyInterface(\"Path\", _propertyGroup));\n      Object.defineProperties(interfaceFunction, {\n        path: {\n          get: function () {\n            if (prop.k) {\n              prop.getValue();\n            }\n\n            return prop;\n          }\n        },\n        shape: {\n          get: function () {\n            if (prop.k) {\n              prop.getValue();\n            }\n\n            return prop;\n          }\n        },\n        _name: {\n          value: shape.nm\n        },\n        ix: {\n          value: shape.ix\n        },\n        propertyIndex: {\n          value: shape.ix\n        },\n        mn: {\n          value: shape.mn\n        },\n        propertyGroup: {\n          value: propertyGroup\n        }\n      });\n      return interfaceFunction;\n    };\n  }();\n  /* exported propertyGroupFactory */\n\n\n  var propertyGroupFactory = function () {\n    return function (interfaceFunction, parentPropertyGroup) {\n      return function (val) {\n        val = val === undefined ? 1 : val;\n\n        if (val <= 0) {\n          return interfaceFunction;\n        }\n\n        return parentPropertyGroup(val - 1);\n      };\n    };\n  }();\n  /* exported PropertyInterface */\n\n\n  var PropertyInterface = function () {\n    return function (propertyName, propertyGroup) {\n      var interfaceFunction = {\n        _name: propertyName\n      };\n\n      function _propertyGroup(val) {\n        val = val === undefined ? 1 : val;\n\n        if (val <= 0) {\n          return interfaceFunction;\n        }\n\n        return propertyGroup(val - 1);\n      }\n\n      return _propertyGroup;\n    };\n  }();\n  /* global ExpressionPropertyInterface, PropertyInterface, propertyGroupFactory, ShapePathInterface */\n\n  /* exported ShapeExpressionInterface */\n\n\n  var ShapeExpressionInterface = function () {\n    function iterateElements(shapes, view, propertyGroup) {\n      var arr = [];\n      var i;\n      var len = shapes ? shapes.length : 0;\n\n      for (i = 0; i < len; i += 1) {\n        if (shapes[i].ty === \"gr\") {\n          arr.push(groupInterfaceFactory(shapes[i], view[i], propertyGroup));\n        } else if (shapes[i].ty === \"fl\") {\n          arr.push(fillInterfaceFactory(shapes[i], view[i], propertyGroup));\n        } else if (shapes[i].ty === \"st\") {\n          arr.push(strokeInterfaceFactory(shapes[i], view[i], propertyGroup));\n        } else if (shapes[i].ty === \"tm\") {\n          arr.push(trimInterfaceFactory(shapes[i], view[i], propertyGroup));\n        } else if (shapes[i].ty === \"tr\") {// arr.push(transformInterfaceFactory(shapes[i],view[i],propertyGroup));\n        } else if (shapes[i].ty === \"el\") {\n          arr.push(ellipseInterfaceFactory(shapes[i], view[i], propertyGroup));\n        } else if (shapes[i].ty === \"sr\") {\n          arr.push(starInterfaceFactory(shapes[i], view[i], propertyGroup));\n        } else if (shapes[i].ty === \"sh\") {\n          arr.push(ShapePathInterface(shapes[i], view[i], propertyGroup));\n        } else if (shapes[i].ty === \"rc\") {\n          arr.push(rectInterfaceFactory(shapes[i], view[i], propertyGroup));\n        } else if (shapes[i].ty === \"rd\") {\n          arr.push(roundedInterfaceFactory(shapes[i], view[i], propertyGroup));\n        } else if (shapes[i].ty === \"rp\") {\n          arr.push(repeaterInterfaceFactory(shapes[i], view[i], propertyGroup));\n        }\n      }\n\n      return arr;\n    }\n\n    function contentsInterfaceFactory(shape, view, propertyGroup) {\n      var interfaces;\n\n      var interfaceFunction = function _interfaceFunction(value) {\n        var i = 0;\n        var len = interfaces.length;\n\n        while (i < len) {\n          if (interfaces[i]._name === value || interfaces[i].mn === value || interfaces[i].propertyIndex === value || interfaces[i].ix === value || interfaces[i].ind === value) {\n            return interfaces[i];\n          }\n\n          i += 1;\n        }\n\n        if (typeof value === \"number\") {\n          return interfaces[value - 1];\n        }\n\n        return null;\n      };\n\n      interfaceFunction.propertyGroup = propertyGroupFactory(interfaceFunction, propertyGroup);\n      interfaces = iterateElements(shape.it, view.it, interfaceFunction.propertyGroup);\n      interfaceFunction.numProperties = interfaces.length;\n      var transformInterface = transformInterfaceFactory(shape.it[shape.it.length - 1], view.it[view.it.length - 1], interfaceFunction.propertyGroup);\n      interfaceFunction.transform = transformInterface;\n      interfaceFunction.propertyIndex = shape.cix;\n      interfaceFunction._name = shape.nm;\n      return interfaceFunction;\n    }\n\n    function groupInterfaceFactory(shape, view, propertyGroup) {\n      var interfaceFunction = function _interfaceFunction(value) {\n        switch (value) {\n          case \"ADBE Vectors Group\":\n          case \"Contents\":\n          case 2:\n            return interfaceFunction.content;\n          // Not necessary for now. Keeping them here in case a new case appears\n          // case 'ADBE Vector Transform Group':\n          // case 3:\n\n          default:\n            return interfaceFunction.transform;\n        }\n      };\n\n      interfaceFunction.propertyGroup = propertyGroupFactory(interfaceFunction, propertyGroup);\n      var content = contentsInterfaceFactory(shape, view, interfaceFunction.propertyGroup);\n      var transformInterface = transformInterfaceFactory(shape.it[shape.it.length - 1], view.it[view.it.length - 1], interfaceFunction.propertyGroup);\n      interfaceFunction.content = content;\n      interfaceFunction.transform = transformInterface;\n      Object.defineProperty(interfaceFunction, \"_name\", {\n        get: function () {\n          return shape.nm;\n        }\n      }); // interfaceFunction.content = interfaceFunction;\n\n      interfaceFunction.numProperties = shape.np;\n      interfaceFunction.propertyIndex = shape.ix;\n      interfaceFunction.nm = shape.nm;\n      interfaceFunction.mn = shape.mn;\n      return interfaceFunction;\n    }\n\n    function fillInterfaceFactory(shape, view, propertyGroup) {\n      function interfaceFunction(val) {\n        if (val === \"Color\" || val === \"color\") {\n          return interfaceFunction.color;\n        }\n\n        if (val === \"Opacity\" || val === \"opacity\") {\n          return interfaceFunction.opacity;\n        }\n\n        return null;\n      }\n\n      Object.defineProperties(interfaceFunction, {\n        color: {\n          get: ExpressionPropertyInterface(view.c)\n        },\n        opacity: {\n          get: ExpressionPropertyInterface(view.o)\n        },\n        _name: {\n          value: shape.nm\n        },\n        mn: {\n          value: shape.mn\n        }\n      });\n      view.c.setGroupProperty(PropertyInterface(\"Color\", propertyGroup));\n      view.o.setGroupProperty(PropertyInterface(\"Opacity\", propertyGroup));\n      return interfaceFunction;\n    }\n\n    function strokeInterfaceFactory(shape, view, propertyGroup) {\n      var _propertyGroup = propertyGroupFactory(interfaceFunction, propertyGroup);\n\n      var _dashPropertyGroup = propertyGroupFactory(dashOb, _propertyGroup);\n\n      function addPropertyToDashOb(i) {\n        Object.defineProperty(dashOb, shape.d[i].nm, {\n          get: ExpressionPropertyInterface(view.d.dataProps[i].p)\n        });\n      }\n\n      var i;\n      var len = shape.d ? shape.d.length : 0;\n      var dashOb = {};\n\n      for (i = 0; i < len; i += 1) {\n        addPropertyToDashOb(i);\n        view.d.dataProps[i].p.setGroupProperty(_dashPropertyGroup);\n      }\n\n      function interfaceFunction(val) {\n        if (val === \"Color\" || val === \"color\") {\n          return interfaceFunction.color;\n        }\n\n        if (val === \"Opacity\" || val === \"opacity\") {\n          return interfaceFunction.opacity;\n        }\n\n        if (val === \"Stroke Width\" || val === \"stroke width\") {\n          return interfaceFunction.strokeWidth;\n        }\n\n        return null;\n      }\n\n      Object.defineProperties(interfaceFunction, {\n        color: {\n          get: ExpressionPropertyInterface(view.c)\n        },\n        opacity: {\n          get: ExpressionPropertyInterface(view.o)\n        },\n        strokeWidth: {\n          get: ExpressionPropertyInterface(view.w)\n        },\n        dash: {\n          get: function () {\n            return dashOb;\n          }\n        },\n        _name: {\n          value: shape.nm\n        },\n        mn: {\n          value: shape.mn\n        }\n      });\n      view.c.setGroupProperty(PropertyInterface(\"Color\", _propertyGroup));\n      view.o.setGroupProperty(PropertyInterface(\"Opacity\", _propertyGroup));\n      view.w.setGroupProperty(PropertyInterface(\"Stroke Width\", _propertyGroup));\n      return interfaceFunction;\n    }\n\n    function trimInterfaceFactory(shape, view, propertyGroup) {\n      function interfaceFunction(val) {\n        if (val === shape.e.ix || val === \"End\" || val === \"end\") {\n          return interfaceFunction.end;\n        }\n\n        if (val === shape.s.ix) {\n          return interfaceFunction.start;\n        }\n\n        if (val === shape.o.ix) {\n          return interfaceFunction.offset;\n        }\n\n        return null;\n      }\n\n      var _propertyGroup = propertyGroupFactory(interfaceFunction, propertyGroup);\n\n      interfaceFunction.propertyIndex = shape.ix;\n      view.s.setGroupProperty(PropertyInterface(\"Start\", _propertyGroup));\n      view.e.setGroupProperty(PropertyInterface(\"End\", _propertyGroup));\n      view.o.setGroupProperty(PropertyInterface(\"Offset\", _propertyGroup));\n      interfaceFunction.propertyIndex = shape.ix;\n      interfaceFunction.propertyGroup = propertyGroup;\n      Object.defineProperties(interfaceFunction, {\n        start: {\n          get: ExpressionPropertyInterface(view.s)\n        },\n        end: {\n          get: ExpressionPropertyInterface(view.e)\n        },\n        offset: {\n          get: ExpressionPropertyInterface(view.o)\n        },\n        _name: {\n          value: shape.nm\n        }\n      });\n      interfaceFunction.mn = shape.mn;\n      return interfaceFunction;\n    }\n\n    function transformInterfaceFactory(shape, view, propertyGroup) {\n      function interfaceFunction(value) {\n        if (shape.a.ix === value || value === \"Anchor Point\") {\n          return interfaceFunction.anchorPoint;\n        }\n\n        if (shape.o.ix === value || value === \"Opacity\") {\n          return interfaceFunction.opacity;\n        }\n\n        if (shape.p.ix === value || value === \"Position\") {\n          return interfaceFunction.position;\n        }\n\n        if (shape.r.ix === value || value === \"Rotation\" || value === \"ADBE Vector Rotation\") {\n          return interfaceFunction.rotation;\n        }\n\n        if (shape.s.ix === value || value === \"Scale\") {\n          return interfaceFunction.scale;\n        }\n\n        if (shape.sk && shape.sk.ix === value || value === \"Skew\") {\n          return interfaceFunction.skew;\n        }\n\n        if (shape.sa && shape.sa.ix === value || value === \"Skew Axis\") {\n          return interfaceFunction.skewAxis;\n        }\n\n        return null;\n      }\n\n      var _propertyGroup = propertyGroupFactory(interfaceFunction, propertyGroup);\n\n      view.transform.mProps.o.setGroupProperty(PropertyInterface(\"Opacity\", _propertyGroup));\n      view.transform.mProps.p.setGroupProperty(PropertyInterface(\"Position\", _propertyGroup));\n      view.transform.mProps.a.setGroupProperty(PropertyInterface(\"Anchor Point\", _propertyGroup));\n      view.transform.mProps.s.setGroupProperty(PropertyInterface(\"Scale\", _propertyGroup));\n      view.transform.mProps.r.setGroupProperty(PropertyInterface(\"Rotation\", _propertyGroup));\n\n      if (view.transform.mProps.sk) {\n        view.transform.mProps.sk.setGroupProperty(PropertyInterface(\"Skew\", _propertyGroup));\n        view.transform.mProps.sa.setGroupProperty(PropertyInterface(\"Skew Angle\", _propertyGroup));\n      }\n\n      view.transform.op.setGroupProperty(PropertyInterface(\"Opacity\", _propertyGroup));\n      Object.defineProperties(interfaceFunction, {\n        opacity: {\n          get: ExpressionPropertyInterface(view.transform.mProps.o)\n        },\n        position: {\n          get: ExpressionPropertyInterface(view.transform.mProps.p)\n        },\n        anchorPoint: {\n          get: ExpressionPropertyInterface(view.transform.mProps.a)\n        },\n        scale: {\n          get: ExpressionPropertyInterface(view.transform.mProps.s)\n        },\n        rotation: {\n          get: ExpressionPropertyInterface(view.transform.mProps.r)\n        },\n        skew: {\n          get: ExpressionPropertyInterface(view.transform.mProps.sk)\n        },\n        skewAxis: {\n          get: ExpressionPropertyInterface(view.transform.mProps.sa)\n        },\n        _name: {\n          value: shape.nm\n        }\n      });\n      interfaceFunction.ty = \"tr\";\n      interfaceFunction.mn = shape.mn;\n      interfaceFunction.propertyGroup = propertyGroup;\n      return interfaceFunction;\n    }\n\n    function ellipseInterfaceFactory(shape, view, propertyGroup) {\n      function interfaceFunction(value) {\n        if (shape.p.ix === value) {\n          return interfaceFunction.position;\n        }\n\n        if (shape.s.ix === value) {\n          return interfaceFunction.size;\n        }\n\n        return null;\n      }\n\n      var _propertyGroup = propertyGroupFactory(interfaceFunction, propertyGroup);\n\n      interfaceFunction.propertyIndex = shape.ix;\n      var prop = view.sh.ty === \"tm\" ? view.sh.prop : view.sh;\n      prop.s.setGroupProperty(PropertyInterface(\"Size\", _propertyGroup));\n      prop.p.setGroupProperty(PropertyInterface(\"Position\", _propertyGroup));\n      Object.defineProperties(interfaceFunction, {\n        size: {\n          get: ExpressionPropertyInterface(prop.s)\n        },\n        position: {\n          get: ExpressionPropertyInterface(prop.p)\n        },\n        _name: {\n          value: shape.nm\n        }\n      });\n      interfaceFunction.mn = shape.mn;\n      return interfaceFunction;\n    }\n\n    function starInterfaceFactory(shape, view, propertyGroup) {\n      function interfaceFunction(value) {\n        if (shape.p.ix === value) {\n          return interfaceFunction.position;\n        }\n\n        if (shape.r.ix === value) {\n          return interfaceFunction.rotation;\n        }\n\n        if (shape.pt.ix === value) {\n          return interfaceFunction.points;\n        }\n\n        if (shape.or.ix === value || value === \"ADBE Vector Star Outer Radius\") {\n          return interfaceFunction.outerRadius;\n        }\n\n        if (shape.os.ix === value) {\n          return interfaceFunction.outerRoundness;\n        }\n\n        if (shape.ir && (shape.ir.ix === value || value === \"ADBE Vector Star Inner Radius\")) {\n          return interfaceFunction.innerRadius;\n        }\n\n        if (shape.is && shape.is.ix === value) {\n          return interfaceFunction.innerRoundness;\n        }\n\n        return null;\n      }\n\n      var _propertyGroup = propertyGroupFactory(interfaceFunction, propertyGroup);\n\n      var prop = view.sh.ty === \"tm\" ? view.sh.prop : view.sh;\n      interfaceFunction.propertyIndex = shape.ix;\n      prop.or.setGroupProperty(PropertyInterface(\"Outer Radius\", _propertyGroup));\n      prop.os.setGroupProperty(PropertyInterface(\"Outer Roundness\", _propertyGroup));\n      prop.pt.setGroupProperty(PropertyInterface(\"Points\", _propertyGroup));\n      prop.p.setGroupProperty(PropertyInterface(\"Position\", _propertyGroup));\n      prop.r.setGroupProperty(PropertyInterface(\"Rotation\", _propertyGroup));\n\n      if (shape.ir) {\n        prop.ir.setGroupProperty(PropertyInterface(\"Inner Radius\", _propertyGroup));\n        prop.is.setGroupProperty(PropertyInterface(\"Inner Roundness\", _propertyGroup));\n      }\n\n      Object.defineProperties(interfaceFunction, {\n        position: {\n          get: ExpressionPropertyInterface(prop.p)\n        },\n        rotation: {\n          get: ExpressionPropertyInterface(prop.r)\n        },\n        points: {\n          get: ExpressionPropertyInterface(prop.pt)\n        },\n        outerRadius: {\n          get: ExpressionPropertyInterface(prop.or)\n        },\n        outerRoundness: {\n          get: ExpressionPropertyInterface(prop.os)\n        },\n        innerRadius: {\n          get: ExpressionPropertyInterface(prop.ir)\n        },\n        innerRoundness: {\n          get: ExpressionPropertyInterface(prop.is)\n        },\n        _name: {\n          value: shape.nm\n        }\n      });\n      interfaceFunction.mn = shape.mn;\n      return interfaceFunction;\n    }\n\n    function rectInterfaceFactory(shape, view, propertyGroup) {\n      function interfaceFunction(value) {\n        if (shape.p.ix === value) {\n          return interfaceFunction.position;\n        }\n\n        if (shape.r.ix === value) {\n          return interfaceFunction.roundness;\n        }\n\n        if (shape.s.ix === value || value === \"Size\" || value === \"ADBE Vector Rect Size\") {\n          return interfaceFunction.size;\n        }\n\n        return null;\n      }\n\n      var _propertyGroup = propertyGroupFactory(interfaceFunction, propertyGroup);\n\n      var prop = view.sh.ty === \"tm\" ? view.sh.prop : view.sh;\n      interfaceFunction.propertyIndex = shape.ix;\n      prop.p.setGroupProperty(PropertyInterface(\"Position\", _propertyGroup));\n      prop.s.setGroupProperty(PropertyInterface(\"Size\", _propertyGroup));\n      prop.r.setGroupProperty(PropertyInterface(\"Rotation\", _propertyGroup));\n      Object.defineProperties(interfaceFunction, {\n        position: {\n          get: ExpressionPropertyInterface(prop.p)\n        },\n        roundness: {\n          get: ExpressionPropertyInterface(prop.r)\n        },\n        size: {\n          get: ExpressionPropertyInterface(prop.s)\n        },\n        _name: {\n          value: shape.nm\n        }\n      });\n      interfaceFunction.mn = shape.mn;\n      return interfaceFunction;\n    }\n\n    function roundedInterfaceFactory(shape, view, propertyGroup) {\n      function interfaceFunction(value) {\n        if (shape.r.ix === value || value === \"Round Corners 1\") {\n          return interfaceFunction.radius;\n        }\n\n        return null;\n      }\n\n      var _propertyGroup = propertyGroupFactory(interfaceFunction, propertyGroup);\n\n      var prop = view;\n      interfaceFunction.propertyIndex = shape.ix;\n      prop.rd.setGroupProperty(PropertyInterface(\"Radius\", _propertyGroup));\n      Object.defineProperties(interfaceFunction, {\n        radius: {\n          get: ExpressionPropertyInterface(prop.rd)\n        },\n        _name: {\n          value: shape.nm\n        }\n      });\n      interfaceFunction.mn = shape.mn;\n      return interfaceFunction;\n    }\n\n    function repeaterInterfaceFactory(shape, view, propertyGroup) {\n      function interfaceFunction(value) {\n        if (shape.c.ix === value || value === \"Copies\") {\n          return interfaceFunction.copies;\n        }\n\n        if (shape.o.ix === value || value === \"Offset\") {\n          return interfaceFunction.offset;\n        }\n\n        return null;\n      }\n\n      var _propertyGroup = propertyGroupFactory(interfaceFunction, propertyGroup);\n\n      var prop = view;\n      interfaceFunction.propertyIndex = shape.ix;\n      prop.c.setGroupProperty(PropertyInterface(\"Copies\", _propertyGroup));\n      prop.o.setGroupProperty(PropertyInterface(\"Offset\", _propertyGroup));\n      Object.defineProperties(interfaceFunction, {\n        copies: {\n          get: ExpressionPropertyInterface(prop.c)\n        },\n        offset: {\n          get: ExpressionPropertyInterface(prop.o)\n        },\n        _name: {\n          value: shape.nm\n        }\n      });\n      interfaceFunction.mn = shape.mn;\n      return interfaceFunction;\n    }\n\n    return function (shapes, view, propertyGroup) {\n      var interfaces;\n\n      function _interfaceFunction(value) {\n        if (typeof value === \"number\") {\n          value = value === undefined ? 1 : value;\n\n          if (value === 0) {\n            return propertyGroup;\n          }\n\n          return interfaces[value - 1];\n        }\n\n        var i = 0;\n        var len = interfaces.length;\n\n        while (i < len) {\n          if (interfaces[i]._name === value) {\n            return interfaces[i];\n          }\n\n          i += 1;\n        }\n\n        return null;\n      }\n\n      function parentGroupWrapper() {\n        return propertyGroup;\n      }\n\n      _interfaceFunction.propertyGroup = propertyGroupFactory(_interfaceFunction, parentGroupWrapper);\n      interfaces = iterateElements(shapes, view, _interfaceFunction.propertyGroup);\n      _interfaceFunction.numProperties = interfaces.length;\n      _interfaceFunction._name = \"Contents\";\n      return _interfaceFunction;\n    };\n  }();\n  /* exported TextExpressionInterface */\n\n\n  var TextExpressionInterface = function () {\n    return function (elem) {\n      var _prevValue;\n\n      var _sourceText;\n\n      function _thisLayerFunction(name) {\n        switch (name) {\n          case \"ADBE Text Document\":\n            return _thisLayerFunction.sourceText;\n\n          default:\n            return null;\n        }\n      }\n\n      Object.defineProperty(_thisLayerFunction, \"sourceText\", {\n        get: function () {\n          elem.textProperty.getValue();\n          var stringValue = elem.textProperty.currentData.t;\n\n          if (stringValue !== _prevValue) {\n            elem.textProperty.currentData.t = _prevValue;\n            _sourceText = new String(stringValue); // eslint-disable-line no-new-wrappers\n            // If stringValue is an empty string, eval returns undefined, so it has to be returned as a String primitive\n\n            _sourceText.value = stringValue || new String(stringValue); // eslint-disable-line no-new-wrappers\n          }\n\n          return _sourceText;\n        }\n      });\n      return _thisLayerFunction;\n    };\n  }();\n  /* global Matrix, MaskManagerInterface, TransformExpressionInterface, getDescriptor */\n\n  /* exported LayerExpressionInterface */\n\n\n  var LayerExpressionInterface = function () {\n    function getMatrix(time) {\n      var toWorldMat = new Matrix();\n\n      if (time !== undefined) {\n        var propMatrix = (this || _global)._elem.finalTransform.mProp.getValueAtTime(time);\n\n        propMatrix.clone(toWorldMat);\n      } else {\n        var transformMat = (this || _global)._elem.finalTransform.mProp;\n        transformMat.applyToMatrix(toWorldMat);\n      }\n\n      return toWorldMat;\n    }\n\n    function toWorldVec(arr, time) {\n      var toWorldMat = this.getMatrix(time);\n      toWorldMat.props[12] = 0;\n      toWorldMat.props[13] = 0;\n      toWorldMat.props[14] = 0;\n      return this.applyPoint(toWorldMat, arr);\n    }\n\n    function toWorld(arr, time) {\n      var toWorldMat = this.getMatrix(time);\n      return this.applyPoint(toWorldMat, arr);\n    }\n\n    function fromWorldVec(arr, time) {\n      var toWorldMat = this.getMatrix(time);\n      toWorldMat.props[12] = 0;\n      toWorldMat.props[13] = 0;\n      toWorldMat.props[14] = 0;\n      return this.invertPoint(toWorldMat, arr);\n    }\n\n    function fromWorld(arr, time) {\n      var toWorldMat = this.getMatrix(time);\n      return this.invertPoint(toWorldMat, arr);\n    }\n\n    function applyPoint(matrix, arr) {\n      if ((this || _global)._elem.hierarchy && (this || _global)._elem.hierarchy.length) {\n        var i;\n        var len = (this || _global)._elem.hierarchy.length;\n\n        for (i = 0; i < len; i += 1) {\n          (this || _global)._elem.hierarchy[i].finalTransform.mProp.applyToMatrix(matrix);\n        }\n      }\n\n      return matrix.applyToPointArray(arr[0], arr[1], arr[2] || 0);\n    }\n\n    function invertPoint(matrix, arr) {\n      if ((this || _global)._elem.hierarchy && (this || _global)._elem.hierarchy.length) {\n        var i;\n        var len = (this || _global)._elem.hierarchy.length;\n\n        for (i = 0; i < len; i += 1) {\n          (this || _global)._elem.hierarchy[i].finalTransform.mProp.applyToMatrix(matrix);\n        }\n      }\n\n      return matrix.inversePoint(arr);\n    }\n\n    function fromComp(arr) {\n      var toWorldMat = new Matrix();\n      toWorldMat.reset();\n\n      (this || _global)._elem.finalTransform.mProp.applyToMatrix(toWorldMat);\n\n      if ((this || _global)._elem.hierarchy && (this || _global)._elem.hierarchy.length) {\n        var i;\n        var len = (this || _global)._elem.hierarchy.length;\n\n        for (i = 0; i < len; i += 1) {\n          (this || _global)._elem.hierarchy[i].finalTransform.mProp.applyToMatrix(toWorldMat);\n        }\n\n        return toWorldMat.inversePoint(arr);\n      }\n\n      return toWorldMat.inversePoint(arr);\n    }\n\n    function sampleImage() {\n      return [1, 1, 1, 1];\n    }\n\n    return function (elem) {\n      var transformInterface;\n\n      function _registerMaskInterface(maskManager) {\n        _thisLayerFunction.mask = new MaskManagerInterface(maskManager, elem);\n      }\n\n      function _registerEffectsInterface(effects) {\n        _thisLayerFunction.effect = effects;\n      }\n\n      function _thisLayerFunction(name) {\n        switch (name) {\n          case \"ADBE Root Vectors Group\":\n          case \"Contents\":\n          case 2:\n            return _thisLayerFunction.shapeInterface;\n\n          case 1:\n          case 6:\n          case \"Transform\":\n          case \"transform\":\n          case \"ADBE Transform Group\":\n            return transformInterface;\n\n          case 4:\n          case \"ADBE Effect Parade\":\n          case \"effects\":\n          case \"Effects\":\n            return _thisLayerFunction.effect;\n\n          case \"ADBE Text Properties\":\n            return _thisLayerFunction.textInterface;\n\n          default:\n            return null;\n        }\n      }\n\n      _thisLayerFunction.getMatrix = getMatrix;\n      _thisLayerFunction.invertPoint = invertPoint;\n      _thisLayerFunction.applyPoint = applyPoint;\n      _thisLayerFunction.toWorld = toWorld;\n      _thisLayerFunction.toWorldVec = toWorldVec;\n      _thisLayerFunction.fromWorld = fromWorld;\n      _thisLayerFunction.fromWorldVec = fromWorldVec;\n      _thisLayerFunction.toComp = toWorld;\n      _thisLayerFunction.fromComp = fromComp;\n      _thisLayerFunction.sampleImage = sampleImage;\n      _thisLayerFunction.sourceRectAtTime = elem.sourceRectAtTime.bind(elem);\n      _thisLayerFunction._elem = elem;\n      transformInterface = TransformExpressionInterface(elem.finalTransform.mProp);\n      var anchorPointDescriptor = getDescriptor(transformInterface, \"anchorPoint\");\n      Object.defineProperties(_thisLayerFunction, {\n        hasParent: {\n          get: function () {\n            return elem.hierarchy.length;\n          }\n        },\n        parent: {\n          get: function () {\n            return elem.hierarchy[0].layerInterface;\n          }\n        },\n        rotation: getDescriptor(transformInterface, \"rotation\"),\n        scale: getDescriptor(transformInterface, \"scale\"),\n        position: getDescriptor(transformInterface, \"position\"),\n        opacity: getDescriptor(transformInterface, \"opacity\"),\n        anchorPoint: anchorPointDescriptor,\n        anchor_point: anchorPointDescriptor,\n        transform: {\n          get: function () {\n            return transformInterface;\n          }\n        },\n        active: {\n          get: function () {\n            return elem.isInRange;\n          }\n        }\n      });\n      _thisLayerFunction.startTime = elem.data.st;\n      _thisLayerFunction.index = elem.data.ind;\n      _thisLayerFunction.source = elem.data.refId;\n      _thisLayerFunction.height = elem.data.ty === 0 ? elem.data.h : 100;\n      _thisLayerFunction.width = elem.data.ty === 0 ? elem.data.w : 100;\n      _thisLayerFunction.inPoint = elem.data.ip / elem.comp.globalData.frameRate;\n      _thisLayerFunction.outPoint = elem.data.op / elem.comp.globalData.frameRate;\n      _thisLayerFunction._name = elem.data.nm;\n      _thisLayerFunction.registerMaskInterface = _registerMaskInterface;\n      _thisLayerFunction.registerEffectsInterface = _registerEffectsInterface;\n      return _thisLayerFunction;\n    };\n  }();\n  /* global */\n\n  /* exported FootageInterface */\n\n\n  var FootageInterface = function () {\n    var outlineInterfaceFactory = function (elem) {\n      var currentPropertyName = \"\";\n      var currentProperty = elem.getFootageData();\n\n      function init() {\n        currentPropertyName = \"\";\n        currentProperty = elem.getFootageData();\n        return searchProperty;\n      }\n\n      function searchProperty(value) {\n        if (currentProperty[value]) {\n          currentPropertyName = value;\n          currentProperty = currentProperty[value];\n\n          if (typeof currentProperty === \"object\") {\n            return searchProperty;\n          }\n\n          return currentProperty;\n        }\n\n        var propertyNameIndex = value.indexOf(currentPropertyName);\n\n        if (propertyNameIndex !== -1) {\n          var index = parseInt(value.substr(propertyNameIndex + currentPropertyName.length), 10);\n          currentProperty = currentProperty[index];\n\n          if (typeof currentProperty === \"object\") {\n            return searchProperty;\n          }\n\n          return currentProperty;\n        }\n\n        return \"\";\n      }\n\n      return init;\n    };\n\n    var dataInterfaceFactory = function (elem) {\n      function interfaceFunction(value) {\n        if (value === \"Outline\") {\n          return interfaceFunction.outlineInterface();\n        }\n\n        return null;\n      }\n\n      interfaceFunction._name = \"Outline\";\n      interfaceFunction.outlineInterface = outlineInterfaceFactory(elem);\n      return interfaceFunction;\n    };\n\n    return function (elem) {\n      function _interfaceFunction(value) {\n        if (value === \"Data\") {\n          return _interfaceFunction.dataInterface;\n        }\n\n        return null;\n      }\n\n      _interfaceFunction._name = \"Data\";\n      _interfaceFunction.dataInterface = dataInterfaceFactory(elem);\n      return _interfaceFunction;\n    };\n  }();\n  /* exported CompExpressionInterface */\n\n\n  var CompExpressionInterface = function () {\n    return function (comp) {\n      function _thisLayerFunction(name) {\n        var i = 0;\n        var len = comp.layers.length;\n\n        while (i < len) {\n          if (comp.layers[i].nm === name || comp.layers[i].ind === name) {\n            return comp.elements[i].layerInterface;\n          }\n\n          i += 1;\n        }\n\n        return null; // return {active:false};\n      }\n\n      Object.defineProperty(_thisLayerFunction, \"_name\", {\n        value: comp.data.nm\n      });\n      _thisLayerFunction.layer = _thisLayerFunction;\n      _thisLayerFunction.pixelAspect = 1;\n      _thisLayerFunction.height = comp.data.h || comp.globalData.compSize.h;\n      _thisLayerFunction.width = comp.data.w || comp.globalData.compSize.w;\n      _thisLayerFunction.pixelAspect = 1;\n      _thisLayerFunction.frameDuration = 1 / comp.globalData.frameRate;\n      _thisLayerFunction.displayStartTime = 0;\n      _thisLayerFunction.numLayers = comp.layers.length;\n      return _thisLayerFunction;\n    };\n  }();\n  /* global ExpressionPropertyInterface */\n\n  /* exported TransformExpressionInterface */\n\n\n  var TransformExpressionInterface = function () {\n    return function (transform) {\n      function _thisFunction(name) {\n        switch (name) {\n          case \"scale\":\n          case \"Scale\":\n          case \"ADBE Scale\":\n          case 6:\n            return _thisFunction.scale;\n\n          case \"rotation\":\n          case \"Rotation\":\n          case \"ADBE Rotation\":\n          case \"ADBE Rotate Z\":\n          case 10:\n            return _thisFunction.rotation;\n\n          case \"ADBE Rotate X\":\n            return _thisFunction.xRotation;\n\n          case \"ADBE Rotate Y\":\n            return _thisFunction.yRotation;\n\n          case \"position\":\n          case \"Position\":\n          case \"ADBE Position\":\n          case 2:\n            return _thisFunction.position;\n\n          case \"ADBE Position_0\":\n            return _thisFunction.xPosition;\n\n          case \"ADBE Position_1\":\n            return _thisFunction.yPosition;\n\n          case \"ADBE Position_2\":\n            return _thisFunction.zPosition;\n\n          case \"anchorPoint\":\n          case \"AnchorPoint\":\n          case \"Anchor Point\":\n          case \"ADBE AnchorPoint\":\n          case 1:\n            return _thisFunction.anchorPoint;\n\n          case \"opacity\":\n          case \"Opacity\":\n          case 11:\n            return _thisFunction.opacity;\n\n          default:\n            return null;\n        }\n      }\n\n      Object.defineProperty(_thisFunction, \"rotation\", {\n        get: ExpressionPropertyInterface(transform.r || transform.rz)\n      });\n      Object.defineProperty(_thisFunction, \"zRotation\", {\n        get: ExpressionPropertyInterface(transform.rz || transform.r)\n      });\n      Object.defineProperty(_thisFunction, \"xRotation\", {\n        get: ExpressionPropertyInterface(transform.rx)\n      });\n      Object.defineProperty(_thisFunction, \"yRotation\", {\n        get: ExpressionPropertyInterface(transform.ry)\n      });\n      Object.defineProperty(_thisFunction, \"scale\", {\n        get: ExpressionPropertyInterface(transform.s)\n      });\n\n      var _px;\n\n      var _py;\n\n      var _pz;\n\n      var _transformFactory;\n\n      if (transform.p) {\n        _transformFactory = ExpressionPropertyInterface(transform.p);\n      } else {\n        _px = ExpressionPropertyInterface(transform.px);\n        _py = ExpressionPropertyInterface(transform.py);\n\n        if (transform.pz) {\n          _pz = ExpressionPropertyInterface(transform.pz);\n        }\n      }\n\n      Object.defineProperty(_thisFunction, \"position\", {\n        get: function () {\n          if (transform.p) {\n            return _transformFactory();\n          }\n\n          return [_px(), _py(), _pz ? _pz() : 0];\n        }\n      });\n      Object.defineProperty(_thisFunction, \"xPosition\", {\n        get: ExpressionPropertyInterface(transform.px)\n      });\n      Object.defineProperty(_thisFunction, \"yPosition\", {\n        get: ExpressionPropertyInterface(transform.py)\n      });\n      Object.defineProperty(_thisFunction, \"zPosition\", {\n        get: ExpressionPropertyInterface(transform.pz)\n      });\n      Object.defineProperty(_thisFunction, \"anchorPoint\", {\n        get: ExpressionPropertyInterface(transform.a)\n      });\n      Object.defineProperty(_thisFunction, \"opacity\", {\n        get: ExpressionPropertyInterface(transform.o)\n      });\n      Object.defineProperty(_thisFunction, \"skew\", {\n        get: ExpressionPropertyInterface(transform.sk)\n      });\n      Object.defineProperty(_thisFunction, \"skewAxis\", {\n        get: ExpressionPropertyInterface(transform.sa)\n      });\n      Object.defineProperty(_thisFunction, \"orientation\", {\n        get: ExpressionPropertyInterface(transform.or)\n      });\n      return _thisFunction;\n    };\n  }();\n  /* exported ProjectInterface */\n\n\n  ProjectInterface = function () {\n    function registerComposition(comp) {\n      (this || _global).compositions.push(comp);\n    }\n\n    return function () {\n      function _thisProjectFunction(name) {\n        var i = 0;\n        var len = (this || _global).compositions.length;\n\n        while (i < len) {\n          if ((this || _global).compositions[i].data && (this || _global).compositions[i].data.nm === name) {\n            if ((this || _global).compositions[i].prepareFrame && (this || _global).compositions[i].data.xt) {\n              (this || _global).compositions[i].prepareFrame((this || _global).currentFrame);\n            }\n\n            return (this || _global).compositions[i].compInterface;\n          }\n\n          i += 1;\n        }\n\n        return null;\n      }\n\n      _thisProjectFunction.compositions = [];\n      _thisProjectFunction.currentFrame = 0;\n      _thisProjectFunction.registerComposition = registerComposition;\n      return _thisProjectFunction;\n    };\n  }();\n  /* global propertyGroupFactory, ExpressionPropertyInterface, PropertyInterface */\n\n  /* exported EffectsExpressionInterface */\n\n\n  var EffectsExpressionInterface = function () {\n    var ob = {\n      createEffectsInterface: createEffectsInterface\n    };\n\n    function createEffectsInterface(elem, propertyGroup) {\n      if (elem.effectsManager) {\n        var effectElements = [];\n        var effectsData = elem.data.ef;\n        var i;\n        var len = elem.effectsManager.effectElements.length;\n\n        for (i = 0; i < len; i += 1) {\n          effectElements.push(createGroupInterface(effectsData[i], elem.effectsManager.effectElements[i], propertyGroup, elem));\n        }\n\n        var effects = elem.data.ef || [];\n\n        var groupInterface = function (name) {\n          i = 0;\n          len = effects.length;\n\n          while (i < len) {\n            if (name === effects[i].nm || name === effects[i].mn || name === effects[i].ix) {\n              return effectElements[i];\n            }\n\n            i += 1;\n          }\n\n          return null;\n        };\n\n        Object.defineProperty(groupInterface, \"numProperties\", {\n          get: function () {\n            return effects.length;\n          }\n        });\n        return groupInterface;\n      }\n\n      return null;\n    }\n\n    function createGroupInterface(data, elements, propertyGroup, elem) {\n      function groupInterface(name) {\n        var effects = data.ef;\n        var i = 0;\n        var len = effects.length;\n\n        while (i < len) {\n          if (name === effects[i].nm || name === effects[i].mn || name === effects[i].ix) {\n            if (effects[i].ty === 5) {\n              return effectElements[i];\n            }\n\n            return effectElements[i]();\n          }\n\n          i += 1;\n        }\n\n        throw new Error();\n      }\n\n      var _propertyGroup = propertyGroupFactory(groupInterface, propertyGroup);\n\n      var effectElements = [];\n      var i;\n      var len = data.ef.length;\n\n      for (i = 0; i < len; i += 1) {\n        if (data.ef[i].ty === 5) {\n          effectElements.push(createGroupInterface(data.ef[i], elements.effectElements[i], elements.effectElements[i].propertyGroup, elem));\n        } else {\n          effectElements.push(createValueInterface(elements.effectElements[i], data.ef[i].ty, elem, _propertyGroup));\n        }\n      }\n\n      if (data.mn === \"ADBE Color Control\") {\n        Object.defineProperty(groupInterface, \"color\", {\n          get: function () {\n            return effectElements[0]();\n          }\n        });\n      }\n\n      Object.defineProperties(groupInterface, {\n        numProperties: {\n          get: function () {\n            return data.np;\n          }\n        },\n        _name: {\n          value: data.nm\n        },\n        propertyGroup: {\n          value: _propertyGroup\n        }\n      });\n      groupInterface.enabled = data.en !== 0;\n      groupInterface.active = groupInterface.enabled;\n      return groupInterface;\n    }\n\n    function createValueInterface(element, type, elem, propertyGroup) {\n      var expressionProperty = ExpressionPropertyInterface(element.p);\n\n      function interfaceFunction() {\n        if (type === 10) {\n          return elem.comp.compInterface(element.p.v);\n        }\n\n        return expressionProperty();\n      }\n\n      if (element.p.setGroupProperty) {\n        element.p.setGroupProperty(PropertyInterface(\"\", propertyGroup));\n      }\n\n      return interfaceFunction;\n    }\n\n    return ob;\n  }();\n  /* global createSizedArray */\n\n  /* exported MaskManagerInterface */\n\n\n  var MaskManagerInterface = function () {\n    function MaskInterface(mask, data) {\n      (this || _global)._mask = mask;\n      (this || _global)._data = data;\n    }\n\n    Object.defineProperty(MaskInterface.prototype, \"maskPath\", {\n      get: function () {\n        if ((this || _global)._mask.prop.k) {\n          (this || _global)._mask.prop.getValue();\n        }\n\n        return (this || _global)._mask.prop;\n      }\n    });\n    Object.defineProperty(MaskInterface.prototype, \"maskOpacity\", {\n      get: function () {\n        if ((this || _global)._mask.op.k) {\n          (this || _global)._mask.op.getValue();\n        }\n\n        return (this || _global)._mask.op.v * 100;\n      }\n    });\n\n    var MaskManager = function (maskManager) {\n      var _masksInterfaces = createSizedArray(maskManager.viewData.length);\n\n      var i;\n      var len = maskManager.viewData.length;\n\n      for (i = 0; i < len; i += 1) {\n        _masksInterfaces[i] = new MaskInterface(maskManager.viewData[i], maskManager.masksProperties[i]);\n      }\n\n      var maskFunction = function (name) {\n        i = 0;\n\n        while (i < len) {\n          if (maskManager.masksProperties[i].nm === name) {\n            return _masksInterfaces[i];\n          }\n\n          i += 1;\n        }\n\n        return null;\n      };\n\n      return maskFunction;\n    };\n\n    return MaskManager;\n  }();\n  /* global createTypedArray */\n\n  /* exported ExpressionPropertyInterface */\n\n\n  var ExpressionPropertyInterface = function () {\n    var defaultUnidimensionalValue = {\n      pv: 0,\n      v: 0,\n      mult: 1\n    };\n    var defaultMultidimensionalValue = {\n      pv: [0, 0, 0],\n      v: [0, 0, 0],\n      mult: 1\n    };\n\n    function completeProperty(expressionValue, property, type) {\n      Object.defineProperty(expressionValue, \"velocity\", {\n        get: function () {\n          return property.getVelocityAtTime(property.comp.currentFrame);\n        }\n      });\n      expressionValue.numKeys = property.keyframes ? property.keyframes.length : 0;\n\n      expressionValue.key = function (pos) {\n        if (!expressionValue.numKeys) {\n          return 0;\n        }\n\n        var value = \"\";\n\n        if (\"s\" in property.keyframes[pos - 1]) {\n          value = property.keyframes[pos - 1].s;\n        } else if (\"e\" in property.keyframes[pos - 2]) {\n          value = property.keyframes[pos - 2].e;\n        } else {\n          value = property.keyframes[pos - 2].s;\n        }\n\n        var valueProp = type === \"unidimensional\" ? new Number(value) : Object.assign({}, value); // eslint-disable-line no-new-wrappers\n\n        valueProp.time = property.keyframes[pos - 1].t / property.elem.comp.globalData.frameRate;\n        valueProp.value = type === \"unidimensional\" ? value[0] : value;\n        return valueProp;\n      };\n\n      expressionValue.valueAtTime = property.getValueAtTime;\n      expressionValue.speedAtTime = property.getSpeedAtTime;\n      expressionValue.velocityAtTime = property.getVelocityAtTime;\n      expressionValue.propertyGroup = property.propertyGroup;\n    }\n\n    function UnidimensionalPropertyInterface(property) {\n      if (!property || !(\"pv\" in property)) {\n        property = defaultUnidimensionalValue;\n      }\n\n      var mult = 1 / property.mult;\n      var val = property.pv * mult;\n      var expressionValue = new Number(val); // eslint-disable-line no-new-wrappers\n\n      expressionValue.value = val;\n      completeProperty(expressionValue, property, \"unidimensional\");\n      return function () {\n        if (property.k) {\n          property.getValue();\n        }\n\n        val = property.v * mult;\n\n        if (expressionValue.value !== val) {\n          expressionValue = new Number(val); // eslint-disable-line no-new-wrappers\n\n          expressionValue.value = val;\n          completeProperty(expressionValue, property, \"unidimensional\");\n        }\n\n        return expressionValue;\n      };\n    }\n\n    function MultidimensionalPropertyInterface(property) {\n      if (!property || !(\"pv\" in property)) {\n        property = defaultMultidimensionalValue;\n      }\n\n      var mult = 1 / property.mult;\n      var len = property.data && property.data.l || property.pv.length;\n      var expressionValue = createTypedArray(\"float32\", len);\n      var arrValue = createTypedArray(\"float32\", len);\n      expressionValue.value = arrValue;\n      completeProperty(expressionValue, property, \"multidimensional\");\n      return function () {\n        if (property.k) {\n          property.getValue();\n        }\n\n        for (var i = 0; i < len; i += 1) {\n          arrValue[i] = property.v[i] * mult;\n          expressionValue[i] = arrValue[i];\n        }\n\n        return expressionValue;\n      };\n    } // TODO: try to avoid using this getter\n\n\n    function defaultGetter() {\n      return defaultUnidimensionalValue;\n    }\n\n    return function (property) {\n      if (!property) {\n        return defaultGetter;\n      }\n\n      if (property.propType === \"unidimensional\") {\n        return UnidimensionalPropertyInterface(property);\n      }\n\n      return MultidimensionalPropertyInterface(property);\n    };\n  }();\n  /* global expressionHelpers, TextSelectorProp, ExpressionManager */\n\n  /* exported TextExpressionSelectorProp */\n\n\n  (function () {\n    var TextExpressionSelectorProp = function () {\n      // eslint-disable-line no-unused-vars\n      function getValueProxy(index, total) {\n        (this || _global).textIndex = index + 1;\n        (this || _global).textTotal = total;\n        (this || _global).v = this.getValue() * (this || _global).mult;\n        return (this || _global).v;\n      }\n\n      return function TextExpressionSelectorPropFactory(elem, data) {\n        (this || _global).pv = 1;\n        (this || _global).comp = elem.comp;\n        (this || _global).elem = elem;\n        (this || _global).mult = 0.01;\n        (this || _global).propType = \"textSelector\";\n        (this || _global).textTotal = data.totalChars;\n        (this || _global).selectorValue = 100;\n        (this || _global).lastValue = [1, 1, 1];\n        (this || _global).k = true;\n        (this || _global).x = true;\n        (this || _global).getValue = ExpressionManager.initiateExpression.bind(this || _global)(elem, data, this || _global);\n        (this || _global).getMult = getValueProxy;\n        (this || _global).getVelocityAtTime = expressionHelpers.getVelocityAtTime;\n\n        if ((this || _global).kf) {\n          (this || _global).getValueAtTime = expressionHelpers.getValueAtTime.bind(this || _global);\n        } else {\n          (this || _global).getValueAtTime = expressionHelpers.getStaticValueAtTime.bind(this || _global);\n        }\n\n        (this || _global).setGroupProperty = expressionHelpers.setGroupProperty;\n      };\n    }();\n\n    var propertyGetTextProp = TextSelectorProp.getTextSelectorProp;\n\n    TextSelectorProp.getTextSelectorProp = function (elem, data, arr) {\n      if (data.t === 1) {\n        return new TextExpressionSelectorPropFactory(elem, data, arr); // eslint-disable-line no-undef\n      }\n\n      return propertyGetTextProp(elem, data, arr);\n    };\n  })();\n  /* global PropertyFactory */\n\n  /* exported SliderEffect, AngleEffect, ColorEffect, PointEffect, LayerIndexEffect, MaskIndexEffect, CheckboxEffect, NoValueEffect */\n\n\n  function SliderEffect(data, elem, container) {\n    (this || _global).p = PropertyFactory.getProp(elem, data.v, 0, 0, container);\n  }\n\n  function AngleEffect(data, elem, container) {\n    (this || _global).p = PropertyFactory.getProp(elem, data.v, 0, 0, container);\n  }\n\n  function ColorEffect(data, elem, container) {\n    (this || _global).p = PropertyFactory.getProp(elem, data.v, 1, 0, container);\n  }\n\n  function PointEffect(data, elem, container) {\n    (this || _global).p = PropertyFactory.getProp(elem, data.v, 1, 0, container);\n  }\n\n  function LayerIndexEffect(data, elem, container) {\n    (this || _global).p = PropertyFactory.getProp(elem, data.v, 0, 0, container);\n  }\n\n  function MaskIndexEffect(data, elem, container) {\n    (this || _global).p = PropertyFactory.getProp(elem, data.v, 0, 0, container);\n  }\n\n  function CheckboxEffect(data, elem, container) {\n    (this || _global).p = PropertyFactory.getProp(elem, data.v, 0, 0, container);\n  }\n\n  function NoValueEffect() {\n    (this || _global).p = {};\n  }\n  /* global extendPrototype, SliderEffect, AngleEffect, ColorEffect, PointEffect, CheckboxEffect, LayerIndexEffect,\r\n  MaskIndexEffect, NoValueEffect, DynamicPropertyContainer */\n\n\n  function EffectsManager(data, element) {\n    var effects = data.ef || [];\n    (this || _global).effectElements = [];\n    var i;\n    var len = effects.length;\n    var effectItem;\n\n    for (i = 0; i < len; i += 1) {\n      effectItem = new GroupEffect(effects[i], element);\n\n      (this || _global).effectElements.push(effectItem);\n    }\n  }\n\n  function GroupEffect(data, element) {\n    this.init(data, element);\n  }\n\n  extendPrototype([DynamicPropertyContainer], GroupEffect);\n  GroupEffect.prototype.getValue = GroupEffect.prototype.iterateDynamicProperties;\n\n  GroupEffect.prototype.init = function (data, element) {\n    (this || _global).data = data;\n    (this || _global).effectElements = [];\n    this.initDynamicPropertyContainer(element);\n    var i;\n    var len = (this || _global).data.ef.length;\n    var eff;\n    var effects = (this || _global).data.ef;\n\n    for (i = 0; i < len; i += 1) {\n      eff = null;\n\n      switch (effects[i].ty) {\n        case 0:\n          eff = new SliderEffect(effects[i], element, this || _global);\n          break;\n\n        case 1:\n          eff = new AngleEffect(effects[i], element, this || _global);\n          break;\n\n        case 2:\n          eff = new ColorEffect(effects[i], element, this || _global);\n          break;\n\n        case 3:\n          eff = new PointEffect(effects[i], element, this || _global);\n          break;\n\n        case 4:\n        case 7:\n          eff = new CheckboxEffect(effects[i], element, this || _global);\n          break;\n\n        case 10:\n          eff = new LayerIndexEffect(effects[i], element, this || _global);\n          break;\n\n        case 11:\n          eff = new MaskIndexEffect(effects[i], element, this || _global);\n          break;\n\n        case 5:\n          eff = new EffectsManager(effects[i], element, this || _global);\n          break;\n        // case 6:\n\n        default:\n          eff = new NoValueEffect(effects[i], element, this || _global);\n          break;\n      }\n\n      if (eff) {\n        (this || _global).effectElements.push(eff);\n      }\n    }\n  };\n\n  var lottie = {};\n\n  function setLocationHref(href) {\n    locationHref = href;\n  }\n\n  function searchAnimations() {\n    if (standalone === true) {\n      animationManager.searchAnimations(animationData, standalone, renderer);\n    } else {\n      animationManager.searchAnimations();\n    }\n  }\n\n  function setSubframeRendering(flag) {\n    subframeEnabled = flag;\n  }\n\n  function loadAnimation(params) {\n    if (standalone === true) {\n      params.animationData = JSON.parse(animationData);\n    }\n\n    return animationManager.loadAnimation(params);\n  }\n\n  function setQuality(value) {\n    if (typeof value === \"string\") {\n      switch (value) {\n        case \"high\":\n          defaultCurveSegments = 200;\n          break;\n\n        default:\n        case \"medium\":\n          defaultCurveSegments = 50;\n          break;\n\n        case \"low\":\n          defaultCurveSegments = 10;\n          break;\n      }\n    } else if (!isNaN(value) && value > 1) {\n      defaultCurveSegments = value;\n    }\n\n    if (defaultCurveSegments >= 50) {\n      roundValues(false);\n    } else {\n      roundValues(true);\n    }\n  }\n\n  function inBrowser() {\n    return typeof navigator !== \"undefined\";\n  }\n\n  function installPlugin(type, plugin) {\n    if (type === \"expressions\") {\n      expressionsPlugin = plugin;\n    }\n  }\n\n  function getFactory(name) {\n    switch (name) {\n      case \"propertyFactory\":\n        return PropertyFactory;\n\n      case \"shapePropertyFactory\":\n        return ShapePropertyFactory;\n\n      case \"matrix\":\n        return Matrix;\n\n      default:\n        return null;\n    }\n  }\n\n  lottie.play = animationManager.play;\n  lottie.pause = animationManager.pause;\n  lottie.setLocationHref = setLocationHref;\n  lottie.togglePause = animationManager.togglePause;\n  lottie.setSpeed = animationManager.setSpeed;\n  lottie.setDirection = animationManager.setDirection;\n  lottie.stop = animationManager.stop;\n  lottie.searchAnimations = searchAnimations;\n  lottie.registerAnimation = animationManager.registerAnimation;\n  lottie.loadAnimation = loadAnimation;\n  lottie.setSubframeRendering = setSubframeRendering;\n  lottie.resize = animationManager.resize; // lottie.start = start;\n\n  lottie.goToAndStop = animationManager.goToAndStop;\n  lottie.destroy = animationManager.destroy;\n  lottie.setQuality = setQuality;\n  lottie.inBrowser = inBrowser;\n  lottie.installPlugin = installPlugin;\n  lottie.freeze = animationManager.freeze;\n  lottie.unfreeze = animationManager.unfreeze;\n  lottie.setVolume = animationManager.setVolume;\n  lottie.mute = animationManager.mute;\n  lottie.unmute = animationManager.unmute;\n  lottie.getRegisteredAnimations = animationManager.getRegisteredAnimations;\n  lottie.__getFactory = getFactory;\n  lottie.version = \"5.7.8\";\n\n  function checkReady() {\n    if (document.readyState === \"complete\") {\n      clearInterval(readyStateCheckInterval);\n      searchAnimations();\n    }\n  }\n\n  function getQueryVariable(variable) {\n    var vars = queryString.split(\"&\");\n\n    for (var i = 0; i < vars.length; i += 1) {\n      var pair = vars[i].split(\"=\");\n\n      if (decodeURIComponent(pair[0]) == variable) {\n        // eslint-disable-line eqeqeq\n        return decodeURIComponent(pair[1]);\n      }\n    }\n\n    return null;\n  }\n\n  var standalone = \"__[STANDALONE]__\";\n  var animationData = \"__[ANIMATIONDATA]__\";\n  var renderer = \"\";\n  var queryString;\n\n  if (standalone) {\n    var scripts = document.getElementsByTagName(\"script\");\n    var index = scripts.length - 1;\n    var myScript = scripts[index] || {\n      src: \"\"\n    };\n    queryString = myScript.src.replace(/^[^\\?]+\\??/, \"\"); // eslint-disable-line no-useless-escape\n\n    renderer = getQueryVariable(\"renderer\");\n  }\n\n  var readyStateCheckInterval = setInterval(checkReady, 100);\n  return lottie;\n});\nvar exports$1 = exports;\n\nexport default exports$1;\n\n//# sourceMappingURL=npm:lottie-web@5.7.8!cjs.map", "import { jsx as _jsx } from \"react/jsx-runtime\";\nimport { useRef, useCallback, useEffect } from \"react\";\nimport { motion, addPropertyControls, ControlType, RenderTarget } from \"framer\";\nimport { defaultEvents } from \"https://framer.com/m/framer/default-utils.js@^0.45.0\";\nimport { useAutoMotionValue } from \"https://framer.com/m/framer/useAutoMotionValue.js@0.3.0\";\nimport lottie from \"https://jspm.dev/lottie-web@5.7.8\";\nvar SrcType;\n\n(function (SrcType) {\n  SrcType[\"File\"] = \"Upload\";\n  SrcType[\"Url\"] = \"URL\";\n})(SrcType || (SrcType = {}));\n\nvar Poster;\n\n(function (Poster) {\n  Poster[\"Auto\"] = \"Auto\";\n  Poster[\"Custom\"] = \"Custom\";\n})(Poster || (Poster = {}));\n\nconst placeholderUrl = \"https://raw.githubusercontent.com/framer/Lottie/master/Lottie.framerfx/assets/logo.json\";\n/**\n* LOTTIE\n*\n* @framerIntrinsicWidth 200\n* @framerIntrinsicHeight 350\n*\n* @framerSupportedLayoutWidth fixed\n* @framerSupportedLayoutHeight any-prefer-fixed\n*/\n\nexport function Lottie(props) {\n  const {\n    style,\n    srcUrl,\n    srcFile,\n    srcType,\n    poster,\n    progress: progressRaw,\n    playing,\n    loop,\n    posterProgress,\n    pauseOnCanvas,\n    isForwardsDirection,\n    speed,\n    onClick,\n    onMouseEnter,\n    onMouseLeave,\n    onMouseDown,\n    onMouseUp,\n    onComplete\n  } = props;\n  const isOnCanvas = RenderTarget.current() === RenderTarget.canvas;\n  const shouldPlay = (!pauseOnCanvas || !isOnCanvas) && playing;\n  const direction = isForwardsDirection ? 1 : -1;\n  const isCustomPoster = poster === Poster.Custom;\n  const el = useRef();\n  const didInitialMount = useRef(false);\n  const animationInfo = useRef({\n    data: null,\n    animation: null,\n    duration: null\n  });\n  const progress = useAutoMotionValue(progressRaw, {\n    transform: v => v * 0.01\n  });\n\n  const play = () => {\n    var ref, ref1;\n    return (ref = animationInfo.current) === null || ref === void 0 ? void 0 : (ref1 = ref.animation) === null || ref1 === void 0 ? void 0 : ref1.play();\n  };\n\n  const pause = () => {\n    var ref, ref2;\n    return (ref = animationInfo.current) === null || ref === void 0 ? void 0 : (ref2 = ref.animation) === null || ref2 === void 0 ? void 0 : ref2.pause();\n  };\n\n  const destroy = () => {\n    var ref, ref3;\n    return (ref = animationInfo.current) === null || ref === void 0 ? void 0 : (ref3 = ref.animation) === null || ref3 === void 0 ? void 0 : ref3.destroy();\n  };\n\n  const scrubTo = useCallback((normalizedProgress, shouldPlayAfter) => {\n    if (!animationInfo.current.duration || !animationInfo.current.animation) return; // Lottie gets weird when scrubbing to the exact last frame\n\n    const frameNumberTarget = normalizedProgress === 1 ? animationInfo.current.duration - 1 : normalizedProgress * animationInfo.current.duration;\n    if (shouldPlayAfter) animationInfo.current.animation.goToAndPlay(frameNumberTarget, true);else animationInfo.current.animation.goToAndStop(frameNumberTarget, true);\n  }, []);\n  const fetchLottieData = useCallback(async url => {\n    if (!url) return null;\n    const data = await fetch(url, {\n      method: \"GET\",\n      credentials: \"omit\",\n      redirect: \"follow\"\n    }).then(d => d.json());\n    return data;\n  }, []); // Fetch lottie animation & start setup\n\n  const init = useCallback(async () => {\n    // Clear current animation\n    destroy();\n    let dataUrl;\n    if (srcType === SrcType.Url) dataUrl = srcUrl;\n    if (srcType === SrcType.File) dataUrl = srcFile;\n\n    if (!dataUrl) {\n      console.warn(\"No valid Lottie animation provided\");\n      dataUrl = placeholderUrl;\n    }\n\n    const data = await fetchLottieData(dataUrl);\n    animationInfo.current.data = data;\n    return setup(didInitialMount.current);\n  }, [srcType, srcUrl, srcFile]); // Create Lottie animation\n\n  const setup = useCallback(shouldPlayAfter => {\n    if (!el.current) return;\n    destroy();\n    const options = {\n      container: el.current,\n      renderer: \"svg\",\n      loop: !isOnCanvas && loop,\n      autoplay: shouldPlay,\n      animationData: animationInfo.current.data,\n      rendererSettings: {\n        preserveAspectRatio: \"xMidYMid slice\"\n      }\n    };\n    const anim = animationInfo.current.animation = lottie.loadAnimation(options);\n    animationInfo.current.duration = anim.getDuration(true);\n    anim.setDirection(direction);\n    anim.setSpeed(speed);\n    didInitialMount.current = true;\n    if (isOnCanvas && isCustomPoster) scrubTo(posterProgress, false);else scrubTo(progress.get(), shouldPlay || shouldPlayAfter);\n    return () => {\n      anim.destroy();\n    };\n  }, [loop, shouldPlay, speed, direction, isOnCanvas, isCustomPoster, posterProgress]); // Initial setup or re-init when source changes\n\n  useEffect(() => {\n    let cleanup;\n    init().then(c => cleanup = c);\n    return () => {\n      if (cleanup) cleanup();\n    };\n  }, [srcType, srcFile, srcUrl]); // No run-time option for loop option, recreating anim\n\n  useEffect(() => {\n    if (!didInitialMount.current) return;\n    return setup(false);\n  }, [loop]); // Perf hack lets see if anyone notices\n\n  useEffect(() => lottie.setQuality(isOnCanvas ? \"low\" : \"medium\"), []); // useEffect(() => {\n  //     if (!isOnCanvas) return\n  //     const normalizedProgress = progress.get() * 0.01\n  //     if (shouldPlay) scrubTo(normalizedProgress, true)\n  //     else scrubTo(normalizedProgress, false)\n  // }, [progressRaw, shouldPlay])\n\n  useEffect(() => progress.onChange(val => {\n    if (isOnCanvas) return;\n    if (shouldPlay) scrubTo(val, true);else scrubTo(val, false);\n  }), []);\n  useEffect(() => {\n    const val = progress.get();\n    if (shouldPlay) scrubTo(val, true);else scrubTo(val, false);\n  }, [progressRaw]);\n  useEffect(() => {\n    if (!isOnCanvas) return;\n    const normalizedPosterProgress = posterProgress * 0.01;\n    if (isCustomPoster) scrubTo(normalizedPosterProgress, false);else scrubTo(progress.get(), false);\n  }, [isCustomPoster, posterProgress]);\n  useEffect(() => {\n    var ref;\n    if (!((ref = animationInfo.current) === null || ref === void 0 ? void 0 : ref.animation)) return;\n    animationInfo.current.animation.setSpeed(speed);\n    scrubTo(progress.get(), true);\n  }, [speed]);\n  useEffect(() => {\n    var ref;\n    if (!((ref = animationInfo.current) === null || ref === void 0 ? void 0 : ref.animation)) return;\n    animationInfo.current.animation.setDirection(direction);\n    scrubTo(progress.get(), true);\n  }, [direction]);\n  useEffect(() => {\n    if (shouldPlay) play();else pause();\n  }, [shouldPlay]);\n  return /*#__PURE__*/_jsx(motion.div, {\n    ref: el,\n    style: style,\n    onClick,\n    onMouseEnter,\n    onMouseLeave,\n    onMouseDown,\n    onMouseUp\n  });\n}\nLottie.defaultProps = {\n  height: 200,\n  width: 200,\n  srcType: SrcType.Url,\n  pauseOnCanvas: true,\n  srcUrl: placeholderUrl,\n  progress: 0,\n  poster: Poster.Auto,\n  posterProgress: 0\n};\naddPropertyControls(Lottie, {\n  srcType: {\n    type: ControlType.Enum,\n    displaySegmentedControl: true,\n    title: \"Source\",\n    options: [SrcType.Url, SrcType.File]\n  },\n  srcUrl: {\n    type: ControlType.String,\n    title: \" \",\n    placeholder: \"../example.json\",\n    hidden: props => props.srcType === SrcType.File\n  },\n  srcFile: {\n    type: ControlType.File,\n    title: \" \",\n    allowedFileTypes: [\"json\"],\n    hidden: props => props.srcType === SrcType.Url\n  },\n  playing: {\n    type: ControlType.Boolean,\n    title: \"Playing\",\n    enabledTitle: \"Yes\",\n    disabledTitle: \"No\"\n  },\n  // Temporarily disabling for perf\n  // pauseOnCanvas: {\n  //     type: ControlType.Boolean,\n  //     title: \"Canvas\",\n  //     disabledTitle: \"Play\",\n  //     enabledTitle: \"Pause\",\n  //     hidden: (props) => props.playing === false,\n  // },\n  loop: {\n    type: ControlType.Boolean,\n    title: \"Loop\",\n    enabledTitle: \"Yes\",\n    disabledTitle: \"No\"\n  },\n  isForwardsDirection: {\n    title: \"Direction\",\n    type: ControlType.Boolean,\n    enabledTitle: \"Normal\",\n    disabledTitle: \"Reverse\"\n  },\n  speed: {\n    type: ControlType.Number,\n    defaultValue: 1,\n    min: 0,\n    max: 10,\n    step: 0.5,\n    displayStepper: true,\n    unit: \"x\"\n  },\n  progress: {\n    title: \"Progress\",\n    type: ControlType.Number,\n    max: 100,\n    min: 0,\n    unit: \"%\"\n  },\n  poster: {\n    title: \"Poster\",\n    type: ControlType.Enum,\n    options: [Poster.Auto, Poster.Custom],\n    displaySegmentedControl: true\n  },\n  posterProgress: {\n    title: \" \",\n    type: ControlType.Number,\n    max: 100,\n    min: 0,\n    unit: \"%\",\n    hidden: ({\n      poster\n    }) => poster === Poster.Auto\n  },\n  // onComplete: {\n  //     type: ControlType.EventHandler,\n  // },\n  ...defaultEvents\n});\nexport const __FramerMetadata__ = {\n  \"exports\": {\n    \"Lottie\": {\n      \"type\": \"reactComponent\",\n      \"name\": \"Lottie\",\n      \"slots\": [],\n      \"annotations\": {\n        \"framerIntrinsicHeight\": \"350\",\n        \"framerIntrinsicWidth\": \"200\",\n        \"framerSupportedLayoutHeight\": \"any-prefer-fixed\",\n        \"framerSupportedLayoutWidth\": \"fixed\",\n        \"framerContractVersion\": \"1\"\n      }\n    },\n    \"__FramerMetadata__\": {\n      \"type\": \"variable\"\n    }\n  }\n}; //# sourceMappingURL=./Lottie.map", "import { jsx as _jsx } from \"react/jsx-runtime\";\nimport { useRef, useCallback, useEffect } from \"react\";\nimport { motion, addPropertyControls, ControlType, RenderTarget } from \"framer\";\nimport { defaultEvents } from \"https://framer.com/m/framer/default-utils.js@^0.45.0\";\nimport lottie from \"https://jspm.dev/lottie-web@5.7.8\";\nvar SrcType;\n\n(function (SrcType) {\n  SrcType[\"File\"] = \"Upload\";\n  SrcType[\"Url\"] = \"URL\";\n})(SrcType || (SrcType = {}));\n\nvar Poster;\n\n(function (Poster) {\n  Poster[\"Auto\"] = \"Auto\";\n  Poster[\"Custom\"] = \"Custom\";\n})(Poster || (Poster = {}));\n\nconst placeholderUrl = \"https://raw.githubusercontent.com/framer/Lottie/master/Lottie.framerfx/assets/logo.json\";\n/**\n* LOTTIE\n*\n* @framerIntrinsicWidth 200\n* @framerIntrinsicHeight 200\n*\n* @framerSupportedLayoutWidth fixed\n* @framerSupportedLayoutHeight fixed\n*/\n\nexport function Lottie(props) {\n  const {\n    style,\n    srcUrl,\n    srcFile,\n    srcType,\n    poster,\n    progress,\n    playing,\n    loop,\n    posterProgress,\n    pauseOnCanvas,\n    isForwardsDirection,\n    speed,\n    onClick,\n    onMouseEnter,\n    onMouseLeave,\n    onMouseDown,\n    onMouseUp,\n    onComplete\n  } = props;\n  const isOnCanvas = RenderTarget.current() === RenderTarget.canvas;\n  const shouldPlay = (!pauseOnCanvas || !isOnCanvas) && playing;\n  const direction = isForwardsDirection ? 1 : -1;\n  const isCustomPoster = poster === Poster.Custom;\n  const el = useRef();\n  const didInitialMount = useRef(false);\n  const animationInfo = useRef({\n    data: null,\n    animation: null,\n    duration: null\n  });\n\n  const play = () => {\n    var ref, ref1;\n    return (ref = animationInfo.current) === null || ref === void 0 ? void 0 : (ref1 = ref.animation) === null || ref1 === void 0 ? void 0 : ref1.play();\n  };\n\n  const pause = () => {\n    var ref5, ref6;\n    return (ref5 = animationInfo.current) === null || ref5 === void 0 ? void 0 : (ref6 = ref5.animation) === null || ref6 === void 0 ? void 0 : ref6.pause();\n  };\n\n  const destroy = () => {\n    var ref7, ref8;\n    return (ref7 = animationInfo.current) === null || ref7 === void 0 ? void 0 : (ref8 = ref7.animation) === null || ref8 === void 0 ? void 0 : ref8.destroy();\n  };\n\n  const scrubTo = useCallback((normalizedProgress, shouldPlayAfter) => {\n    if (!animationInfo.current.duration || !animationInfo.current.animation) return; // Lottie gets weird when scrubbing to the exact last frame\n\n    const frameNumberTarget = normalizedProgress === 1 ? animationInfo.current.duration - 1 : normalizedProgress * animationInfo.current.duration;\n    if (shouldPlayAfter) animationInfo.current.animation.goToAndPlay(frameNumberTarget, true);else animationInfo.current.animation.goToAndStop(frameNumberTarget, true);\n  }, []);\n  const fetchLottieData = useCallback(async url => {\n    if (!url) return null;\n    const data = await fetch(url, {\n      method: \"GET\",\n      credentials: \"omit\",\n      redirect: \"follow\"\n    }).then(d => d.json());\n    return data;\n  }, []); // Fetch lottie animation & start setup\n\n  const init = useCallback(async () => {\n    // Clear current animation\n    destroy();\n    let dataUrl;\n    if (srcType === SrcType.Url) dataUrl = srcUrl;\n    if (srcType === SrcType.File) dataUrl = srcFile;\n\n    if (!dataUrl) {\n      console.warn(\"No valid Lottie animation provided\");\n      dataUrl = placeholderUrl;\n    }\n\n    const data = await fetchLottieData(dataUrl);\n    animationInfo.current.data = data;\n    return setup(didInitialMount.current);\n  }, [srcType, srcUrl, srcFile]); // Create Lottie animation\n\n  const setup = useCallback(shouldPlayAfter => {\n    if (!el.current) return;\n    destroy();\n    const options = {\n      container: el.current,\n      renderer: \"svg\",\n      loop: !isOnCanvas && loop,\n      autoplay: shouldPlay,\n      animationData: animationInfo.current.data,\n      rendererSettings: {\n        preserveAspectRatio: \"xMidYMid slice\"\n      }\n    };\n    const anim = animationInfo.current.animation = lottie.loadAnimation(options);\n    animationInfo.current.duration = anim.getDuration(true);\n    anim.setDirection(direction);\n    anim.setSpeed(speed);\n    didInitialMount.current = true;\n    if (isOnCanvas && isCustomPoster) scrubTo(posterProgress * 0.01, false);else scrubTo(progress * 0.01, shouldPlay || shouldPlayAfter);\n    return () => {\n      anim.destroy();\n    };\n  }, [loop, shouldPlay, speed, direction, isOnCanvas, isCustomPoster, posterProgress]); // Initial setup or re-init when source changes\n\n  useEffect(() => {\n    let cleanup;\n    init().then(c => cleanup = c);\n    return () => {\n      if (cleanup) cleanup();\n    };\n  }, [srcType, srcFile, srcUrl]); // No run-time option for loop option, recreating anim\n\n  useEffect(() => {\n    if (!didInitialMount.current) return;\n    return setup(false);\n  }, [loop]); // Perf hack lets see if anyone notices\n\n  useEffect(() => lottie.setQuality(isOnCanvas ? \"low\" : \"medium\"), []);\n  useEffect(() => {\n    const normalizedProgress = progress * 0.01;\n    if (shouldPlay) scrubTo(normalizedProgress, true);else scrubTo(normalizedProgress, false);\n  }, [progress, shouldPlay]);\n  useEffect(() => {\n    if (!isOnCanvas) return;\n    const normalizedPosterProgress = posterProgress * 0.01;\n    if (isCustomPoster) scrubTo(posterProgress * 0.01, false);else scrubTo(progress * 0.01, false);\n  }, [isCustomPoster, posterProgress]);\n  useEffect(() => {\n    var ref9;\n    if (!((ref9 = animationInfo.current) === null || ref9 === void 0 ? void 0 : ref9.animation)) return;\n    animationInfo.current.animation.setSpeed(speed);\n    scrubTo(progress * 0.01, true);\n  }, [speed]);\n  useEffect(() => {\n    var ref10;\n    if (!((ref10 = animationInfo.current) === null || ref10 === void 0 ? void 0 : ref10.animation)) return;\n    animationInfo.current.animation.setDirection(direction);\n    scrubTo(progress * 0.01, true);\n  }, [direction]);\n  useEffect(() => {\n    if (shouldPlay) play();else pause();\n  }, [shouldPlay]);\n  return /*#__PURE__*/_jsx(motion.div, {\n    ref: el,\n    style: style,\n    onClick,\n    onMouseEnter,\n    onMouseLeave,\n    onMouseDown,\n    onMouseUp\n  });\n}\nLottie.defaultProps = {\n  height: 200,\n  width: 200,\n  srcType: SrcType.Url,\n  pauseOnCanvas: true,\n  srcUrl: placeholderUrl,\n  progress: 0,\n  poster: Poster.Auto,\n  posterProgress: 0\n};\naddPropertyControls(Lottie, {\n  srcType: {\n    type: ControlType.Enum,\n    displaySegmentedControl: true,\n    title: \"Source\",\n    options: [SrcType.Url, SrcType.File]\n  },\n  srcUrl: {\n    type: ControlType.String,\n    title: \" \",\n    placeholder: \"../example.json\",\n    hidden: props => props.srcType === SrcType.File\n  },\n  srcFile: {\n    type: ControlType.File,\n    title: \" \",\n    allowedFileTypes: [\"json\"],\n    hidden: props => props.srcType === SrcType.Url\n  },\n  playing: {\n    type: ControlType.Boolean,\n    title: \"Playing\",\n    enabledTitle: \"Yes\",\n    disabledTitle: \"No\"\n  },\n  // Temporarily disabling for perf\n  // pauseOnCanvas: {\n  //     type: ControlType.Boolean,\n  //     title: \"Canvas\",\n  //     disabledTitle: \"Play\",\n  //     enabledTitle: \"Pause\",\n  //     hidden: (props) => props.playing === false,\n  // },\n  loop: {\n    type: ControlType.Boolean,\n    title: \"Loop\",\n    enabledTitle: \"Yes\",\n    disabledTitle: \"No\"\n  },\n  isForwardsDirection: {\n    title: \"Direction\",\n    type: ControlType.Boolean,\n    enabledTitle: \"Normal\",\n    disabledTitle: \"Reverse\"\n  },\n  speed: {\n    type: ControlType.Number,\n    defaultValue: 1,\n    min: 0,\n    max: 10,\n    step: 0.5,\n    displayStepper: true,\n    unit: \"x\"\n  },\n  progress: {\n    title: \"Progress\",\n    type: ControlType.Number,\n    max: 100,\n    min: 0,\n    unit: \"%\"\n  },\n  poster: {\n    title: \"Poster\",\n    type: ControlType.Enum,\n    options: [Poster.Auto, Poster.Custom],\n    displaySegmentedControl: true\n  },\n  posterProgress: {\n    title: \" \",\n    type: ControlType.Number,\n    max: 100,\n    min: 0,\n    unit: \"%\",\n    hidden: ({\n      poster\n    }) => poster === Poster.Auto\n  },\n  // onComplete: {\n  //     type: ControlType.EventHandler,\n  // },\n  ...defaultEvents\n});\nexport const __FramerMetadata__ = {\n  \"exports\": {\n    \"Lottie\": {\n      \"type\": \"reactComponent\",\n      \"name\": \"Lottie\",\n      \"slots\": [],\n      \"annotations\": {\n        \"framerIntrinsicHeight\": \"200\",\n        \"framerIntrinsicWidth\": \"200\",\n        \"framerSupportedLayoutHeight\": \"fixed\",\n        \"framerContractVersion\": \"1\",\n        \"framerSupportedLayoutWidth\": \"fixed\"\n      }\n    },\n    \"__FramerMetadata__\": {\n      \"type\": \"variable\"\n    }\n  }\n}; //# sourceMappingURL=./Lottie.map", "import { jsx as _jsx, jsxs as _jsxs } from \"react/jsx-runtime\"; // Generated by Framer (6d1243e)\n\nimport * as React from \"react\";\nimport { motion, LayoutGroup } from \"framer-motion\";\nimport { Image, addFonts, withCSS, cx, Container, RichText, Text, SVG, Stack, withStyleAppearEffect, getFonts, withParallaxTransform, useHydratedBreakpointVariants, removeHiddenBreakpointLayers, PropertyOverrides, GeneratedComponentContext } from \"framer\";\nimport Navigation from \"https://framerusercontent.com/modules/wrO8pjGLcEI0jnM9QC8t/TuHhU0EeJ3EN0DQnhFqR/GEoi1Pm9r.js\";\nimport Lol from \"https://framerusercontent.com/modules/EOGbER4aJiZYjhW5L2YN/keCMT97Ls7Jj0Qlz4Tzp/XMK8q2W6e.js\";\nimport PivotCenter from \"https://framerusercontent.com/modules/vgTa5uEU9qT5o3wBhSZ9/WygzpKXbLTjLparUZBCK/aHja_7SN8.js\";\nimport FooterSocial from \"https://framerusercontent.com/modules/1YXLdlafbI5CFWtIOFwL/KWCytDFlGzT5RkJqxaWV/OsWJDxRnp.js\";\nimport { Lottie } from \"https://framerusercontent.com/modules/YbkSqZ7STzW5WsMb1yan/DuKVeg9nOFqZ2BwKOWuY/Lottie.js\";\nimport { Lottie as Lottie1 } from \"https://framerusercontent.com/modules/YbkSqZ7STzW5WsMb1yan/IVV7KAhLhLItRCI4O28N/Lottie.js\";\nconst MotionDivWithStyleAppearEffect = withStyleAppearEffect(motion.div);\nconst NavigationFonts = getFonts(Navigation);\nconst LolFonts = getFonts(Lol);\nconst PivotCenterFonts = getFonts(PivotCenter);\nconst FooterSocialFonts = getFonts(FooterSocial);\nconst MotionDivWithParallaxTransform = withParallaxTransform(motion.div);\nconst LottieFonts = getFonts(Lottie);\nconst Lottie1Fonts = getFonts(Lottie1);\nconst cycleOrder = [\"WQLkyLRf1\", \"llZCUywb0\"];\nconst breakpoints = {\n  WQLkyLRf1: \"(min-width: 1200px)\",\n  llZCUywb0: \"(max-width: 1199px)\"\n};\nconst isBrowser = typeof document !== \"undefined\";\nconst variantClassNames = {\n  WQLkyLRf1: \"framer-v-72rtr7\",\n  llZCUywb0: \"framer-v-1pgycd0\"\n};\n\nif (isBrowser) {\n  removeHiddenBreakpointLayers(\"WQLkyLRf1\", breakpoints, variantClassNames);\n}\n\nconst humanReadableVariantMap = {\n  Desktop: \"WQLkyLRf1\",\n  Phone: \"llZCUywb0\"\n};\nconst transitions = {\n  default: {\n    duration: 0\n  }\n};\nconst BASE62 = \"0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz\";\n\nconst useRandomID = () => {\n  const ref = React.useRef(null);\n\n  if (ref.current === null) {\n    ref.current = Array(5).fill(0).map(() => BASE62[Math.floor(Math.random() * BASE62.length)]).join(\"\");\n  }\n\n  return ref.current;\n};\n\nconst Component = /*#__PURE__*/React.forwardRef(function ({\n  id,\n  style: externalStyle = {},\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  const [baseVariant, hydratedBaseVariant] = useHydratedBreakpointVariants(variant, breakpoints, false);\n  const gestureVariant = undefined;\n  const transition = transitions.default;\n\n  const isDisplayed1 = () => {\n    if (!isBrowser) return true;\n    if (baseVariant === \"llZCUywb0\") return false;\n    return true;\n  };\n\n  const isDisplayed2 = () => {\n    if (!isBrowser) return true;\n    if (baseVariant === \"llZCUywb0\") return false;\n    return true;\n  };\n\n  const isDisplayed3 = () => {\n    if (!isBrowser) return true;\n    if (baseVariant === \"llZCUywb0\") return false;\n    return true;\n  };\n\n  const isDisplayed4 = () => {\n    if (!isBrowser) return true;\n    if (baseVariant === \"llZCUywb0\") return false;\n    return true;\n  };\n\n  const defaultLayoutId = useRandomID();\n  const {\n    pointerEvents,\n    ...style\n  } = externalStyle;\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        \"data-framer-generated\": true,\n        className: cx(\"framer-iuPTk\"),\n        style: {\n          display: \"contents\",\n          pointerEvents: pointerEvents !== null && pointerEvents !== void 0 ? pointerEvents : undefined\n        },\n        children: [/*#__PURE__*/_jsxs(motion.div, { ...restProps,\n          className: cx(\"framer-72rtr7\", className),\n          style: { ...style\n          },\n          name: \"Desktop\",\n          ref: ref,\n          children: [/*#__PURE__*/_jsx(Container, {\n            className: \"framer-yri3j9-container\",\n            layoutScroll: true,\n            exit: {\n              x: 0,\n              y: 0,\n              scale: 1,\n              opacity: 0,\n              transformPerspective: 1200,\n              rotate: 0,\n              rotateX: 0,\n              rotateY: 0,\n              transition: {\n                type: \"spring\",\n                stiffness: 147,\n                damping: 47,\n                mass: 1.4,\n                delay: .4\n              }\n            },\n            initial: {\n              x: 0,\n              y: 0,\n              scale: 1,\n              opacity: 0,\n              transformPerspective: 1200,\n              rotate: 0,\n              rotateX: 0,\n              rotateY: 0\n            },\n            animate: {\n              x: 0,\n              y: 0,\n              scale: 1,\n              opacity: 1,\n              transformPerspective: 1200,\n              rotate: 0,\n              rotateX: 0,\n              rotateY: 0,\n              transition: {\n                type: \"spring\",\n                stiffness: 147,\n                damping: 47,\n                mass: 1.4,\n                delay: .4\n              }\n            },\n            children: /*#__PURE__*/_jsx(PropertyOverrides, {\n              breakpoint: baseVariant,\n              overrides: {\n                llZCUywb0: {\n                  variant: \"bTHDaXD71\"\n                }\n              },\n              children: /*#__PURE__*/_jsx(Navigation, {\n                width: \"100%\",\n                height: \"100%\",\n                layoutId: \"TcOo_Zk5d\",\n                id: \"TcOo_Zk5d\",\n                variant: \"fFdGd6igW\",\n                background: \"rgb(171, 74, 186)\",\n                style: {\n                  width: \"100%\",\n                  height: \"100%\"\n                }\n              })\n            })\n          }), /*#__PURE__*/_jsx(PropertyOverrides, {\n            breakpoint: baseVariant,\n            overrides: {\n              llZCUywb0: {\n                direction: \"vertical\",\n                __contentWrapperStyle: {\n                  width: \"100%\",\n                  height: \"auto\",\n                  padding: \"61px 40px 61px 40px\"\n                },\n                transformTemplate: undefined\n              }\n            },\n            children: /*#__PURE__*/_jsx(Stack, {\n              className: \"framer-1fkb0gb\",\n              name: \"Desktop\",\n              as: \"section\",\n              direction: \"horizontal\",\n              distribution: \"center\",\n              alignment: \"center\",\n              gap: 0,\n              __fromCanvasComponent: true,\n              __contentWrapperStyle: {\n                width: \"100%\",\n                height: \"auto\",\n                padding: \"100px 40px 100px 40px\"\n              },\n              \"data-framer-name\": \"Desktop\",\n              children: /*#__PURE__*/_jsx(PropertyOverrides, {\n                breakpoint: baseVariant,\n                overrides: {\n                  llZCUywb0: {\n                    direction: \"vertical\",\n                    gap: 74,\n                    __contentWrapperStyle: {\n                      width: \"100%\",\n                      height: \"auto\",\n                      padding: \"0px 0px 0px 0px\",\n                      maxWidth: \"1000px\"\n                    },\n                    background: null\n                  }\n                },\n                children: /*#__PURE__*/_jsxs(Stack, {\n                  className: \"framer-twu2y4\",\n                  background: null,\n                  direction: \"horizontal\",\n                  distribution: \"start\",\n                  alignment: \"center\",\n                  gap: 41,\n                  __fromCanvasComponent: true,\n                  __contentWrapperStyle: {\n                    width: \"100%\",\n                    height: \"auto\",\n                    padding: \"0px 0px 0px 0px\",\n                    maxWidth: \"1000px\"\n                  },\n                  initial: {\n                    x: 0,\n                    y: 0,\n                    scale: 1,\n                    opacity: 0,\n                    transformPerspective: 1200,\n                    rotate: 0,\n                    rotateX: 0,\n                    rotateY: 0\n                  },\n                  animate: {\n                    x: 0,\n                    y: 0,\n                    scale: 1,\n                    opacity: 1,\n                    transformPerspective: 1200,\n                    rotate: 0,\n                    rotateX: 0,\n                    rotateY: 0,\n                    transition: {\n                      type: \"spring\",\n                      stiffness: 147,\n                      damping: 47,\n                      mass: 1.4,\n                      delay: .4\n                    }\n                  },\n                  exit: {\n                    x: 0,\n                    y: 0,\n                    scale: 1,\n                    opacity: 0,\n                    transformPerspective: 1200,\n                    rotate: 0,\n                    rotateX: 0,\n                    rotateY: 0,\n                    transition: {\n                      type: \"spring\",\n                      stiffness: 147,\n                      damping: 47,\n                      mass: 1.4,\n                      delay: .4\n                    }\n                  },\n                  children: [/*#__PURE__*/_jsx(PropertyOverrides, {\n                    breakpoint: baseVariant,\n                    overrides: {\n                      llZCUywb0: {\n                        alignment: \"center\",\n                        __contentWrapperStyle: {\n                          width: \"100%\",\n                          height: \"auto\",\n                          padding: \"0px 0px 0px 0px\",\n                          maxWidth: \"740px\"\n                        },\n                        background: null\n                      }\n                    },\n                    children: /*#__PURE__*/_jsxs(Stack, {\n                      className: \"framer-nlr3hy\",\n                      background: null,\n                      direction: \"vertical\",\n                      distribution: \"start\",\n                      alignment: \"start\",\n                      gap: 20,\n                      __fromCanvasComponent: true,\n                      __contentWrapperStyle: {\n                        width: \"100%\",\n                        height: \"auto\",\n                        padding: \"0px 0px 0px 0px\",\n                        maxWidth: \"740px\"\n                      },\n                      children: [/*#__PURE__*/_jsx(PropertyOverrides, {\n                        breakpoint: baseVariant,\n                        overrides: {\n                          llZCUywb0: {\n                            fonts: [\"CUSTOM;Gilroy Bold\", \"CUSTOM;Gilroy Extrabold Italic\"],\n                            __htmlStructure: '<h4 style=\"--framer-line-height:1.1em; --framer-text-alignment:center;\"><span style=\"--framer-font-family:&quot;Gilroy Bold&quot;, serif; --framer-font-style:normal; --framer-font-weight:400; --font-selector:Q1VTVE9NO0dpbHJveSBCb2xk; --framer-text-color:var(--extracted-1wi65aa); --framer-font-size:36px; --framer-letter-spacing:-1.5px;\">{{ text-placeholder }}</span></h4>',\n                            htmlFromDesign: '<h4 style=\"--framer-line-height:1.1em; --framer-text-alignment:center;\"><span style=\"--framer-font-family:&quot;Gilroy Bold&quot;, serif; --framer-font-style:normal; --framer-font-weight:400; --font-selector:Q1VTVE9NO0dpbHJveSBCb2xk; --framer-text-color:var(--extracted-1wi65aa); --framer-font-size:36px; --framer-letter-spacing:-1.5px;\">One Gateway for</span><span style=\"--framer-font-family:&quot;Gilroy Bold&quot;, serif; --framer-font-style:normal; --framer-font-weight:400; --font-selector:Q1VTVE9NO0dpbHJveSBCb2xk; --framer-text-color:var(--extracted-afnvhb); --framer-font-size:36px; --framer-letter-spacing:-1.5px;\"><br></span><span style=\"--framer-font-family:&quot;Gilroy Extrabold Italic&quot;, serif; --framer-font-style:normal; --framer-font-weight:400; --font-selector:Q1VTVE9NO0dpbHJveSBFeHRyYWJvbGQgSXRhbGlj; --framer-text-color:var(--extracted-h2vp2a); --framer-font-size:60px; --framer-letter-spacing:-1.5px;\">User <br>Onboarding </span></h4>',\n                            preload: []\n                          }\n                        },\n                        children: /*#__PURE__*/_jsx(RichText, {\n                          className: \"framer-cv2acf\",\n                          style: {\n                            whiteSpace: \"pre-wrap\",\n                            wordWrap: \"break-word\",\n                            wordBreak: \"break-word\",\n                            \"--framer-link-text-color\": \"rgb(0, 153, 255)\",\n                            \"--framer-link-text-decoration\": \"underline\",\n                            \"--framer-paragraph-spacing\": \"0px\",\n                            \"--extracted-1wi65aa\": \"rgb(0, 255, 163)\",\n                            \"--extracted-afnvhb\": \"rgb(0, 255, 163)\",\n                            \"--extracted-h2vp2a\": \"rgb(0, 255, 163)\"\n                          },\n                          fonts: [\"CUSTOM;Gilroy Bold\", \"CUSTOM;Gilroy Extrabold Italic\"],\n                          withExternalLayout: true,\n                          verticalAlignment: \"top\",\n                          __fromCanvasComponent: true,\n                          __htmlStructure: '<h4 style=\"--framer-line-height:1.1em; --framer-text-alignment:left;\"><span style=\"--framer-font-family:&quot;Gilroy Bold&quot;, serif; --framer-font-style:normal; --framer-font-weight:400; --font-selector:Q1VTVE9NO0dpbHJveSBCb2xk; --framer-text-color:var(--extracted-1wi65aa); --framer-font-size:36px; --framer-letter-spacing:-1.5px;\">{{ text-placeholder }}</span></h4>',\n                          htmlFromDesign: '<h4 style=\"--framer-line-height:1.1em; --framer-text-alignment:left;\"><span style=\"--framer-font-family:&quot;Gilroy Bold&quot;, serif; --framer-font-style:normal; --framer-font-weight:400; --font-selector:Q1VTVE9NO0dpbHJveSBCb2xk; --framer-text-color:var(--extracted-1wi65aa); --framer-font-size:36px; --framer-letter-spacing:-1.5px;\">One Gateway for</span><span style=\"--framer-font-family:&quot;Gilroy Bold&quot;, serif; --framer-font-style:normal; --framer-font-weight:400; --font-selector:Q1VTVE9NO0dpbHJveSBCb2xk; --framer-text-color:var(--extracted-afnvhb); --framer-font-size:36px; --framer-letter-spacing:-1.5px;\"><br></span><span style=\"--framer-font-family:&quot;Gilroy Extrabold Italic&quot;, serif; --framer-font-style:normal; --framer-font-weight:400; --font-selector:Q1VTVE9NO0dpbHJveSBFeHRyYWJvbGQgSXRhbGlj; --framer-text-color:var(--extracted-h2vp2a); --framer-font-size:60px; --framer-letter-spacing:-1.5px;\">User Onboarding </span></h4>'\n                        })\n                      }), /*#__PURE__*/_jsx(PropertyOverrides, {\n                        breakpoint: baseVariant,\n                        overrides: {\n                          llZCUywb0: {\n                            fonts: [\"CUSTOM;Gilroy Medium\"],\n                            __htmlStructure: '<h3 style=\"--framer-line-height:1.4em; --framer-text-alignment:center;\"><span style=\"--framer-font-family:&quot;Gilroy Medium&quot;, serif; --framer-font-style:normal; --framer-font-weight:400; --font-selector:Q1VTVE9NO0dpbHJveSBNZWRpdW0=; --framer-text-color:var(--extracted-1k2zljd); --framer-font-size:22px; --framer-letter-spacing:-0.2px;\">{{ text-placeholder }}</span></h3>',\n                            htmlFromDesign: '<h3 style=\"--framer-line-height:1.4em; --framer-text-alignment:center;\"><span style=\"--framer-font-family:&quot;Gilroy Medium&quot;, serif; --framer-font-style:normal; --framer-font-weight:400; --font-selector:Q1VTVE9NO0dpbHJveSBNZWRpdW0=; --framer-text-color:var(--extracted-1k2zljd); --framer-font-size:22px; --framer-letter-spacing:-0.2px;\">Optimal onboarding using our <br>platform with AI driven bots,<br> assisted discord integrations<br> and tracking services </span></h3>',\n                            preload: [],\n                            transformTemplate: undefined\n                          }\n                        },\n                        children: /*#__PURE__*/_jsx(RichText, {\n                          className: \"framer-zkl489\",\n                          style: {\n                            whiteSpace: \"pre-wrap\",\n                            wordWrap: \"break-word\",\n                            wordBreak: \"break-word\",\n                            maxWidth: \"430px\",\n                            \"--framer-paragraph-spacing\": \"0px\",\n                            \"--extracted-1k2zljd\": \"rgb(255, 255, 255)\"\n                          },\n                          fonts: [\"CUSTOM;Gilroy Medium\"],\n                          withExternalLayout: true,\n                          verticalAlignment: \"top\",\n                          __fromCanvasComponent: true,\n                          __htmlStructure: '<h3 style=\"--framer-line-height:1.4em; --framer-text-alignment:left;\"><span style=\"--framer-font-family:&quot;Gilroy Medium&quot;, serif; --framer-font-style:normal; --framer-font-weight:400; --font-selector:Q1VTVE9NO0dpbHJveSBNZWRpdW0=; --framer-text-color:var(--extracted-1k2zljd); --framer-font-size:22px; --framer-letter-spacing:-0.2px;\">{{ text-placeholder }}</span></h3>',\n                          htmlFromDesign: '<h3 style=\"--framer-line-height:1.4em; --framer-text-alignment:left;\"><span style=\"--framer-font-family:&quot;Gilroy Medium&quot;, serif; --framer-font-style:normal; --framer-font-weight:400; --font-selector:Q1VTVE9NO0dpbHJveSBNZWRpdW0=; --framer-text-color:var(--extracted-1k2zljd); --framer-font-size:22px; --framer-letter-spacing:-0.2px;\">Optimal onboarding using our platform with AI driven bots, assisted discord integrations and tracking services </span></h3>'\n                        })\n                      })]\n                    })\n                  }), /*#__PURE__*/_jsx(PropertyOverrides, {\n                    breakpoint: baseVariant,\n                    overrides: {\n                      llZCUywb0: {\n                        background: false\n                      }\n                    },\n                    children: /*#__PURE__*/_jsxs(motion.div, {\n                      className: \"framer-wujre8\",\n                      children: [/*#__PURE__*/_jsxs(MotionDivWithParallaxTransform, {\n                        className: \"framer-yu0oz9\",\n                        name: \"Group 2292\",\n                        background: null,\n                        \"data-framer-name\": \"Group 2292\",\n                        __framer__speed: 150,\n                        __framer__adjustPosition: true,\n                        __framer__offset: 20,\n                        children: [/*#__PURE__*/_jsx(motion.div, {\n                          className: \"framer-d9fmfo\",\n                          name: \"Rectangle 64\",\n                          \"data-framer-name\": \"Rectangle 64\"\n                        }), /*#__PURE__*/_jsx(Text, {\n                          withExternalLayout: true,\n                          verticalAlignment: \"center\",\n                          __fromCanvasComponent: true,\n                          alignment: \"center\",\n                          fonts: [\"CUSTOM;Gilroy Bold\"],\n                          className: \"framer-1vczth8\",\n                          name: \"Discord\",\n                          rawHTML: \"<span style='font-size: 0; line-height: 0; tab-size: 4; white-space: inherit; word-wrap: inherit'><span style='font-size: 0'><span style=''>Discord</span><br></span></span>\"\n                        }), /*#__PURE__*/_jsx(motion.div, {\n                          className: \"framer-1l4g7mh\",\n                          name: \"Rectangle 65\",\n                          \"data-framer-name\": \"Rectangle 65\"\n                        }), /*#__PURE__*/_jsx(Text, {\n                          withExternalLayout: true,\n                          verticalAlignment: \"center\",\n                          __fromCanvasComponent: true,\n                          alignment: \"center\",\n                          fonts: [\"CUSTOM;Gilroy Bold\"],\n                          className: \"framer-141cdqr\",\n                          name: \"Accept Invite\",\n                          rawHTML: \"<span style='font-size: 0; line-height: 0; tab-size: 4; white-space: inherit; word-wrap: inherit'><span style='font-size: 0'><span style=''>Accept Invite</span><br></span></span>\"\n                        }), /*#__PURE__*/_jsxs(motion.div, {\n                          className: \"framer-10ufxww\",\n                          name: \"Group 82\",\n                          background: null,\n                          \"data-framer-name\": \"Group 82\",\n                          children: [/*#__PURE__*/_jsxs(motion.div, {\n                            className: \"framer-6g16k6\",\n                            name: \"Group 81\",\n                            background: null,\n                            \"data-framer-name\": \"Group 81\",\n                            children: [/*#__PURE__*/_jsx(Text, {\n                              withExternalLayout: true,\n                              verticalAlignment: \"center\",\n                              __fromCanvasComponent: true,\n                              alignment: \"center\",\n                              fonts: [\"CUSTOM;Gilroy Semibold\"],\n                              className: \"framer-1jw7kvn\",\n                              name: \"5000 Members\",\n                              rawHTML: \"<span style='font-size: 0; line-height: 0; tab-size: 4; white-space: inherit; word-wrap: inherit'><span style='font-size: 0'><span style=''>5000 Members</span><br></span></span>\"\n                            }), /*#__PURE__*/_jsx(motion.div, {\n                              className: \"framer-59fuii\",\n                              name: \"Ellipse 17\",\n                              \"data-framer-name\": \"Ellipse 17\"\n                            })]\n                          }), /*#__PURE__*/_jsxs(motion.div, {\n                            className: \"framer-clnm4l\",\n                            name: \"Group 80\",\n                            background: null,\n                            \"data-framer-name\": \"Group 80\",\n                            children: [/*#__PURE__*/_jsx(Text, {\n                              withExternalLayout: true,\n                              verticalAlignment: \"center\",\n                              __fromCanvasComponent: true,\n                              alignment: \"center\",\n                              fonts: [\"CUSTOM;Gilroy Semibold\"],\n                              className: \"framer-11bfya4\",\n                              name: \"660 Online\",\n                              rawHTML: \"<span style='font-size: 0; line-height: 0; tab-size: 4; white-space: inherit; word-wrap: inherit'><span style='font-size: 0'><span style=''>660 Online</span><br></span></span>\"\n                            }), /*#__PURE__*/_jsx(motion.div, {\n                              className: \"framer-1keulvy\",\n                              name: \"Ellipse 18\",\n                              \"data-framer-name\": \"Ellipse 18\"\n                            })]\n                          })]\n                        }), /*#__PURE__*/_jsx(SVG, {\n                          withExternalLayout: true,\n                          intrinsicHeight: 52,\n                          intrinsicWidth: 73,\n                          className: \"framer-1v2u6z2\",\n                          name: \".\",\n                          fill: \"rgba(0,0,0,1)\",\n                          \"data-framer-name\": \".\",\n                          svg: '<svg width=\"73\" height=\"52\" viewBox=\"0 0 73 52\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M53.875 52C53.875 52 51.6251 49.3381 49.75 46.9856C57.9375 44.6953 61.0624 39.6191 61.0624 39.6191C58.5001 41.2906 56.0624 42.4668 53.875 43.2715C50.7501 44.5715 47.7501 45.4381 44.8126 45.9334C38.8125 47.0478 33.3125 46.7381 28.6251 45.8715C25.0625 45.1906 22 44.2 19.4375 43.2097C18 42.6525 16.4375 41.9715 14.875 41.105C14.6875 40.9809 14.5 40.9191 14.3125 40.7953C14.1875 40.7334 14.125 40.6715 14.0625 40.6097C12.9375 39.9906 12.3125 39.5572 12.3125 39.5572C12.3125 39.5572 15.3125 44.5097 23.25 46.8619C21.375 49.2144 19.0625 52 19.0625 52C5.25 51.5666 0 42.5906 0 42.5906C0 22.6574 8.99999 6.50044 8.99999 6.50044C18 -0.185198 26.5626 0.000514439 26.5626 0.000514439L27.1875 0.743363C15.9375 3.96237 10.75 8.85282 10.75 8.85282C10.75 8.85282 12.125 8.10995 14.4375 7.0576C21.125 4.14809 26.4375 3.34334 28.6251 3.15762C29 3.09572 29.3126 3.03381 29.6875 3.03381C33.5 2.53859 37.8124 2.41478 42.3126 2.91C48.2499 3.59096 54.6251 5.32428 61.125 8.85282C61.125 8.85282 56.1876 4.21 45.5624 0.99098L46.4374 0.000514439C46.4374 0.000514439 55 -0.185198 63.9999 6.50044C63.9999 6.50044 73 22.6574 73 42.5906C73 42.5906 67.6874 51.5666 53.875 52ZM24.8125 23.0908C21.25 23.0908 18.4375 26.1859 18.4375 29.9621C18.4375 33.7384 21.3125 36.8334 24.8125 36.8334C28.3751 36.8334 31.1874 33.7384 31.1874 29.9621C31.25 26.1859 28.3751 23.0908 24.8125 23.0908ZM47.6249 23.0908C44.0625 23.0908 41.25 26.1859 41.25 29.9621C41.25 33.7384 44.1251 36.8334 47.6249 36.8334C51.1876 36.8334 53.9999 33.7384 53.9999 29.9621C53.9999 26.1859 51.1876 23.0908 47.6249 23.0908Z\" fill=\"#5865F2\"/>\\n</svg>\\n'\n                        })]\n                      }), /*#__PURE__*/_jsxs(MotionDivWithParallaxTransform, {\n                        className: \"framer-7bxr5g\",\n                        name: \"Forum\",\n                        background: null,\n                        \"data-framer-name\": \"Forum\",\n                        __framer__speed: 140,\n                        __framer__adjustPosition: true,\n                        __framer__offset: 20,\n                        children: [/*#__PURE__*/_jsx(motion.div, {\n                          className: \"framer-ozs6ky\",\n                          name: \"Rectangle 64\",\n                          \"data-framer-name\": \"Rectangle 64\"\n                        }), /*#__PURE__*/_jsx(Text, {\n                          withExternalLayout: true,\n                          verticalAlignment: \"center\",\n                          __fromCanvasComponent: true,\n                          alignment: \"center\",\n                          fonts: [\"CUSTOM;Gilroy Extrabold\"],\n                          className: \"framer-1rvsa1w\",\n                          name: \"Github\",\n                          rawHTML: \"<span style='font-size: 0; line-height: 0; tab-size: 4; white-space: inherit; word-wrap: inherit'><span style='font-size: 0'><span style=''>Github</span><br></span></span>\"\n                        }), /*#__PURE__*/_jsx(motion.div, {\n                          className: \"framer-13rxxw4\",\n                          name: \"Rectangle 65\",\n                          \"data-framer-name\": \"Rectangle 65\"\n                        }), /*#__PURE__*/_jsx(Text, {\n                          withExternalLayout: true,\n                          verticalAlignment: \"center\",\n                          __fromCanvasComponent: true,\n                          alignment: \"center\",\n                          fonts: [\"CUSTOM;Gilroy Extrabold\"],\n                          className: \"framer-jp69wf\",\n                          name: \"Join Git\",\n                          rawHTML: \"<span style='font-size: 0; line-height: 0; tab-size: 4; white-space: inherit; word-wrap: inherit'><span style='font-size: 0'><span style=''>Join Git</span><br></span></span>\"\n                        }), /*#__PURE__*/_jsxs(motion.div, {\n                          className: \"framer-ataa70\",\n                          name: \"Group 83\",\n                          background: null,\n                          \"data-framer-name\": \"Group 83\",\n                          children: [/*#__PURE__*/_jsxs(motion.div, {\n                            className: \"framer-1k5fqa3\",\n                            name: \"Group 81\",\n                            background: null,\n                            \"data-framer-name\": \"Group 81\",\n                            children: [/*#__PURE__*/_jsx(Text, {\n                              withExternalLayout: true,\n                              verticalAlignment: \"center\",\n                              __fromCanvasComponent: true,\n                              alignment: \"left\",\n                              fonts: [\"CUSTOM;Gilroy Semibold\"],\n                              className: \"framer-1blhvdi\",\n                              name: \"450 Merges\",\n                              rawHTML: \"<span style='font-size: 0; line-height: 0; tab-size: 4; white-space: inherit; word-wrap: inherit'><span style='font-size: 0'><span style=''>450 Merges</span><br></span></span>\"\n                            }), /*#__PURE__*/_jsx(motion.div, {\n                              className: \"framer-109goft\",\n                              name: \"Ellipse 17\",\n                              \"data-framer-name\": \"Ellipse 17\"\n                            })]\n                          }), /*#__PURE__*/_jsxs(motion.div, {\n                            className: \"framer-1tiirps\",\n                            name: \"Group 80\",\n                            background: null,\n                            \"data-framer-name\": \"Group 80\",\n                            children: [/*#__PURE__*/_jsx(Text, {\n                              withExternalLayout: true,\n                              verticalAlignment: \"center\",\n                              __fromCanvasComponent: true,\n                              alignment: \"left\",\n                              fonts: [\"CUSTOM;Gilroy Semibold\"],\n                              className: \"framer-1nel1sb\",\n                              name: \"20 PRs\",\n                              rawHTML: \"<span style='font-size: 0; line-height: 0; tab-size: 4; white-space: inherit; word-wrap: inherit'><span style='font-size: 0'><span style=''>20 PRs</span><br></span></span>\"\n                            }), /*#__PURE__*/_jsx(motion.div, {\n                              className: \"framer-ipxp1j\",\n                              name: \"Ellipse 18\",\n                              \"data-framer-name\": \"Ellipse 18\"\n                            })]\n                          })]\n                        }), /*#__PURE__*/_jsx(SVG, {\n                          withExternalLayout: true,\n                          intrinsicHeight: 55,\n                          intrinsicWidth: 57,\n                          className: \"framer-98z7ix\",\n                          name: \"Vector\",\n                          fill: \"rgba(0,0,0,1)\",\n                          \"data-framer-name\": \"Vector\",\n                          svg: '<svg width=\"57\" height=\"55\" viewBox=\"0 0 57 55\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M28.5 0C12.7538 0 0 12.6175 0 28.1956C0 40.6721 8.15812 51.2102 19.4869 54.9461C20.9119 55.1928 21.4463 54.347 21.4463 53.6068C21.4463 52.9372 21.4106 50.7168 21.4106 48.3554C14.25 49.6595 12.3975 46.6284 11.8275 45.0424C11.5069 44.2318 10.1175 41.7295 8.90625 41.0598C7.90875 40.5311 6.48375 39.2271 8.87063 39.1919C11.115 39.1566 12.7181 41.236 13.2525 42.0819C15.8175 46.3465 19.9144 45.1482 21.5531 44.408C21.8025 42.5753 22.5506 41.3418 23.37 40.6369C17.0288 39.932 10.4025 37.5001 10.4025 26.7153C10.4025 23.649 11.5069 21.1114 13.3238 19.1377C13.0388 18.4329 12.0412 15.5428 13.6087 11.6659C13.6087 11.6659 15.9956 10.9258 21.4463 14.556C23.7263 13.9216 26.1488 13.6044 28.5713 13.6044C30.9938 13.6044 33.4163 13.9216 35.6963 14.556C41.1469 10.8905 43.5338 11.6659 43.5338 11.6659C45.1013 15.5428 44.1038 18.4329 43.8188 19.1377C45.6356 21.1114 46.74 23.6138 46.74 26.7153C46.74 37.5354 40.0781 39.932 33.7369 40.6369C34.77 41.518 35.6606 43.2097 35.6606 45.8531C35.6606 49.6242 35.625 52.6552 35.625 53.6068C35.625 54.347 36.1594 55.2281 37.5844 54.9461C43.2421 53.0565 48.1585 49.4592 51.6414 44.6605C55.1244 39.8617 56.9985 34.1033 57 28.1956C57 12.6175 44.2463 0 28.5 0Z\" fill=\"white\"/>\\n</svg>\\n'\n                        })]\n                      }), /*#__PURE__*/_jsxs(MotionDivWithParallaxTransform, {\n                        className: \"framer-1w9y4zv\",\n                        name: \"Group 2311\",\n                        background: null,\n                        \"data-framer-name\": \"Group 2311\",\n                        __framer__speed: 150,\n                        __framer__adjustPosition: true,\n                        __framer__offset: 20,\n                        children: [/*#__PURE__*/_jsx(motion.div, {\n                          className: \"framer-aklaxp\",\n                          name: \"Rectangle 64\",\n                          \"data-framer-name\": \"Rectangle 64\"\n                        }), /*#__PURE__*/_jsx(Text, {\n                          withExternalLayout: true,\n                          verticalAlignment: \"center\",\n                          __fromCanvasComponent: true,\n                          alignment: \"center\",\n                          fonts: [\"CUSTOM;Gilroy Extrabold\"],\n                          className: \"framer-o6708\",\n                          name: \"Forum\",\n                          rawHTML: \"<span style='font-size: 0; line-height: 0; tab-size: 4; white-space: inherit; word-wrap: inherit'><span style='font-size: 0'><span style=''>Forum</span><br></span></span>\"\n                        }), /*#__PURE__*/_jsx(motion.div, {\n                          className: \"framer-kbtj13\",\n                          name: \"Rectangle 65\",\n                          \"data-framer-name\": \"Rectangle 65\"\n                        }), /*#__PURE__*/_jsx(Text, {\n                          withExternalLayout: true,\n                          verticalAlignment: \"center\",\n                          __fromCanvasComponent: true,\n                          alignment: \"center\",\n                          fonts: [\"CUSTOM;Gilroy Extrabold\"],\n                          className: \"framer-zdica0\",\n                          name: \"Vist Forum\",\n                          rawHTML: \"<span style='font-size: 0; line-height: 0; tab-size: 4; white-space: inherit; word-wrap: inherit'><span style='font-size: 0'><span style=''>Vist Forum</span><br></span></span>\"\n                        }), /*#__PURE__*/_jsx(motion.div, {\n                          className: \"framer-1dd2ph\",\n                          name: \"Group 82\",\n                          background: null,\n                          \"data-framer-name\": \"Group 82\",\n                          children: /*#__PURE__*/_jsxs(motion.div, {\n                            className: \"framer-1rn912\",\n                            name: \"Group 80\",\n                            background: null,\n                            \"data-framer-name\": \"Group 80\",\n                            children: [/*#__PURE__*/_jsx(Text, {\n                              withExternalLayout: true,\n                              verticalAlignment: \"center\",\n                              __fromCanvasComponent: true,\n                              alignment: \"center\",\n                              fonts: [\"CUSTOM;Gilroy Semibold\"],\n                              className: \"framer-71gvju\",\n                              name: \"100 Posts\",\n                              rawHTML: \"<span style='font-size: 0; line-height: 0; tab-size: 4; white-space: inherit; word-wrap: inherit'><span style='font-size: 0'><span style=''>100 Posts</span><br></span></span>\"\n                            }), /*#__PURE__*/_jsx(motion.div, {\n                              className: \"framer-b2hx49\",\n                              name: \"Ellipse 18\",\n                              \"data-framer-name\": \"Ellipse 18\"\n                            })]\n                          })\n                        }), /*#__PURE__*/_jsx(SVG, {\n                          withExternalLayout: true,\n                          intrinsicHeight: 64,\n                          intrinsicWidth: 64,\n                          className: \"framer-10oe0u8\",\n                          name: \"noun-forum-4500804-FFFFFF 1\",\n                          fill: \"rgba(0,0,0,1)\",\n                          \"data-framer-name\": \"noun-forum-4500804-FFFFFF 1\",\n                          svg: '<svg width=\"64\" height=\"64\" viewBox=\"0 0 64 64\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M62.1386 15.7128H1.86664C1.32957 15.7128 0.894531 15.2778 0.894531 14.7407C0.894531 14.2036 1.32953 13.7686 1.86664 13.7686H62.1386C62.6757 13.7686 63.1107 14.2036 63.1107 14.7407C63.1109 15.2777 62.6757 15.7128 62.1386 15.7128Z\" fill=\"white\"/>\\n<path d=\"M56.6613 11.4286H32.4789C31.9419 11.4286 31.5068 10.9936 31.5068 10.4565C31.5068 9.91942 31.9418 9.48438 32.4789 9.48438H56.6613C57.1984 9.48438 57.6334 9.91937 57.6334 10.4565C57.6334 10.9933 57.1985 11.4286 56.6613 11.4286Z\" fill=\"white\"/>\\n<path d=\"M9.43674 10.4566C9.43674 11.1642 8.8634 11.7375 8.1561 11.7375C7.44858 11.7375 6.87524 11.1642 6.87524 10.4566C6.87524 9.74933 7.44858 9.17578 8.1561 9.17578C8.8634 9.17578 9.43674 9.74933 9.43674 10.4566Z\" fill=\"white\"/>\\n<path d=\"M14.7968 10.4566C14.7968 11.1642 14.2235 11.7375 13.5162 11.7375C12.8087 11.7375 12.2354 11.1642 12.2354 10.4566C12.2354 9.74933 12.8087 9.17578 13.5162 9.17578C14.2235 9.17578 14.7968 9.74933 14.7968 10.4566Z\" fill=\"white\"/>\\n<path d=\"M20.1574 10.4566C20.1574 11.1642 19.5841 11.7375 18.8768 11.7375C18.1693 11.7375 17.5959 11.1642 17.5959 10.4566C17.5959 9.74933 18.1693 9.17578 18.8768 9.17578C19.5841 9.17578 20.1574 9.74933 20.1574 10.4566Z\" fill=\"white\"/>\\n<path d=\"M59.7067 58.7998H4.29334C2.41707 58.7998 0.890833 57.2735 0.890833 55.3973L0.890625 8.60368C0.890625 6.72741 2.41687 5.20117 4.29313 5.20117H59.7065C61.5827 5.20117 63.109 6.72741 63.109 8.60368V55.3973C63.1092 57.2735 61.5827 58.7998 59.7065 58.7998H59.7067ZM4.29334 7.14538C3.48939 7.14538 2.83521 7.79957 2.83521 8.60352V55.3971C2.83521 56.2011 3.48939 56.8553 4.29334 56.8553H59.7067C60.5106 56.8553 61.1648 56.2011 61.1648 55.3971V8.60352C61.1648 7.79957 60.5106 7.14538 59.7067 7.14538H4.29334Z\" fill=\"white\"/>\\n<path d=\"M52.89 33.9121H11.1098C9.23352 33.9121 7.70728 32.3858 7.70728 30.5096V24.4445C7.70728 22.5682 9.23352 21.042 11.1098 21.042H52.8895C54.7658 21.042 56.292 22.5682 56.292 24.4445V30.5096C56.2922 32.3858 54.766 33.9121 52.8897 33.9121H52.89ZM11.1098 22.9862C10.3058 22.9862 9.65165 23.6404 9.65165 24.4443V30.5094C9.65165 31.3133 10.3058 31.9675 11.1098 31.9675H52.8895C53.6935 31.9675 54.3476 31.3133 54.3476 30.5094L54.3479 24.4449C54.3479 23.6409 53.6937 22.9867 52.8897 22.9867L11.1098 22.9862Z\" fill=\"white\"/>\\n<path d=\"M20.5563 33.9121C20.0192 33.9121 19.5842 33.4771 19.5842 32.94L19.584 22.0141C19.584 21.477 20.019 21.042 20.5561 21.042C21.0932 21.042 21.5282 21.477 21.5282 22.0141V32.94C21.5284 33.4766 21.093 33.9121 20.5563 33.9121H20.5563Z\" fill=\"white\"/>\\n<path d=\"M40.2133 26.743H25.1061C24.5691 26.743 24.134 26.308 24.134 25.7709C24.134 25.2339 24.569 24.7988 25.1061 24.7988H40.2133C40.7504 24.7988 41.1854 25.2338 41.1854 25.7709C41.1854 26.308 40.7504 26.743 40.2133 26.743Z\" fill=\"white\"/>\\n<path d=\"M49.8373 30.1561H25.1061C24.5691 30.1561 24.134 29.7211 24.134 29.184C24.134 28.647 24.569 28.2119 25.1061 28.2119H49.8373C50.3744 28.2119 50.8094 28.6469 50.8094 29.184C50.8096 29.7211 50.3742 30.1561 49.8373 30.1561Z\" fill=\"white\"/>\\n<path d=\"M52.89 51.5254H11.1098C9.23352 51.5254 7.70728 49.9991 7.70728 48.1228V42.0578C7.70728 40.1815 9.23352 38.6553 11.1098 38.6553H52.8895C54.7658 38.6553 56.292 40.1815 56.292 42.0578V48.1228C56.2922 49.9991 54.766 51.5254 52.8897 51.5254H52.89ZM11.1098 40.6C10.3058 40.6 9.65165 41.2542 9.65165 42.0582V48.1232C9.65165 48.9272 10.3058 49.5814 11.1098 49.5814H52.8895C53.6935 49.5814 54.3476 48.9272 54.3476 48.1232V42.0582C54.3476 41.2542 53.6935 40.6 52.8895 40.6H11.1098Z\" fill=\"white\"/>\\n<path d=\"M20.5563 51.5254C20.0192 51.5254 19.5842 51.0904 19.5842 50.5532L19.584 39.6274C19.584 39.0903 20.019 38.6553 20.5561 38.6553C21.0932 38.6553 21.5282 39.0903 21.5282 39.6274V50.5532C21.5284 51.0899 21.093 51.5254 20.5563 51.5254H20.5563Z\" fill=\"white\"/>\\n<path d=\"M40.2133 44.3554H25.1061C24.5691 44.3554 24.134 43.9204 24.134 43.3833C24.134 42.8462 24.569 42.4111 25.1061 42.4111H40.2133C40.7504 42.4111 41.1854 42.8461 41.1854 43.3833C41.1854 43.9203 40.7504 44.3554 40.2133 44.3554Z\" fill=\"white\"/>\\n<path d=\"M49.8373 47.7694H25.1061C24.5691 47.7694 24.134 47.3344 24.134 46.7973C24.134 46.2602 24.569 45.8252 25.1061 45.8252H49.8373C50.3744 45.8252 50.8094 46.2602 50.8094 46.7973C50.8096 47.3344 50.3742 47.7694 49.8373 47.7694Z\" fill=\"white\"/>\\n</svg>\\n'\n                        })]\n                      }), /*#__PURE__*/_jsxs(MotionDivWithParallaxTransform, {\n                        className: \"framer-1byawzm\",\n                        name: \"Group 2296\",\n                        background: null,\n                        \"data-framer-name\": \"Group 2296\",\n                        __framer__speed: 150,\n                        __framer__adjustPosition: true,\n                        __framer__offset: 20,\n                        children: [/*#__PURE__*/_jsx(motion.div, {\n                          className: \"framer-4oihnb\",\n                          name: \"Rectangle 64\",\n                          \"data-framer-name\": \"Rectangle 64\"\n                        }), /*#__PURE__*/_jsx(Text, {\n                          withExternalLayout: true,\n                          verticalAlignment: \"center\",\n                          __fromCanvasComponent: true,\n                          alignment: \"center\",\n                          fonts: [\"CUSTOM;Gilroy Extrabold\"],\n                          className: \"framer-wtd9e2\",\n                          name: \"JuiceBox\",\n                          rawHTML: \"<span style='font-size: 0; line-height: 0; tab-size: 4; white-space: inherit; word-wrap: inherit'><span style='font-size: 0'><span style=''>JuiceBox</span><br></span></span>\"\n                        }), /*#__PURE__*/_jsx(motion.div, {\n                          className: \"framer-hfvmmu\",\n                          name: \"Rectangle 65\",\n                          \"data-framer-name\": \"Rectangle 65\"\n                        }), /*#__PURE__*/_jsx(Text, {\n                          withExternalLayout: true,\n                          verticalAlignment: \"center\",\n                          __fromCanvasComponent: true,\n                          alignment: \"center\",\n                          fonts: [\"CUSTOM;Gilroy Extrabold\"],\n                          className: \"framer-165m4gs\",\n                          name: \"Trade Tokens\",\n                          rawHTML: \"<span style='font-size: 0; line-height: 0; tab-size: 4; white-space: inherit; word-wrap: inherit'><span style='font-size: 0'><span style=''>Trade Tokens</span><br></span></span>\"\n                        }), /*#__PURE__*/_jsx(motion.div, {\n                          className: \"framer-1bkt4wq\",\n                          name: \"Group 83\",\n                          background: null,\n                          \"data-framer-name\": \"Group 83\",\n                          children: /*#__PURE__*/_jsxs(motion.div, {\n                            className: \"framer-1ksysmb\",\n                            name: \"Group 80\",\n                            background: null,\n                            \"data-framer-name\": \"Group 80\",\n                            children: [/*#__PURE__*/_jsx(Text, {\n                              withExternalLayout: true,\n                              verticalAlignment: \"center\",\n                              __fromCanvasComponent: true,\n                              alignment: \"center\",\n                              fonts: [\"CUSTOM;Gilroy Semibold\"],\n                              className: \"framer-17mt5sp\",\n                              name: \"500,000 tokens/ETH\",\n                              rawHTML: \"<span style='font-size: 0; line-height: 0; tab-size: 4; white-space: inherit; word-wrap: inherit'><span style='font-size: 0'><span style=''>500,000 tokens/ETH</span><br></span></span>\"\n                            }), /*#__PURE__*/_jsx(motion.div, {\n                              className: \"framer-j8pkay\",\n                              name: \"Ellipse 18\",\n                              \"data-framer-name\": \"Ellipse 18\"\n                            })]\n                          })\n                        }), /*#__PURE__*/_jsx(Image, {\n                          className: \"framer-1nhcyfn\",\n                          name: \"image 13\",\n                          background: {\n                            src: new URL(\"https://framerusercontent.com/images/wLxmeVhSTF7gFnFpmasmyoxv4.png\").href,\n                            fit: \"fill\"\n                          },\n                          \"data-framer-name\": \"image 13\",\n                          alt: \"\"\n                        })]\n                      }), /*#__PURE__*/_jsxs(MotionDivWithParallaxTransform, {\n                        className: \"framer-72sv2a\",\n                        name: \"Group 2294\",\n                        background: null,\n                        \"data-framer-name\": \"Group 2294\",\n                        __framer__speed: 150,\n                        __framer__adjustPosition: true,\n                        __framer__offset: 20,\n                        children: [/*#__PURE__*/_jsx(motion.div, {\n                          className: \"framer-x7it3r\",\n                          name: \"Rectangle 64\",\n                          \"data-framer-name\": \"Rectangle 64\"\n                        }), /*#__PURE__*/_jsx(Text, {\n                          withExternalLayout: true,\n                          verticalAlignment: \"center\",\n                          __fromCanvasComponent: true,\n                          alignment: \"center\",\n                          fonts: [\"CUSTOM;Gilroy Extrabold\"],\n                          className: \"framer-qp0ky0\",\n                          name: \"Snapshot\",\n                          rawHTML: \"<span style='font-size: 0; line-height: 0; tab-size: 4; white-space: inherit; word-wrap: inherit'><span style='font-size: 0'><span style=''>Snapshot</span><br></span></span>\"\n                        }), /*#__PURE__*/_jsx(motion.div, {\n                          className: \"framer-d1ax13\",\n                          name: \"Rectangle 65\",\n                          \"data-framer-name\": \"Rectangle 65\"\n                        }), /*#__PURE__*/_jsx(Text, {\n                          withExternalLayout: true,\n                          verticalAlignment: \"center\",\n                          __fromCanvasComponent: true,\n                          alignment: \"center\",\n                          fonts: [\"CUSTOM;Gilroy Extrabold\"],\n                          className: \"framer-15qv3hw\",\n                          name: \"View Proposals\",\n                          rawHTML: \"<span style='font-size: 0; line-height: 0; tab-size: 4; white-space: inherit; word-wrap: inherit'><span style='font-size: 0'><span style=''>View Proposals</span><br></span></span>\"\n                        }), /*#__PURE__*/_jsx(SVG, {\n                          withExternalLayout: true,\n                          intrinsicHeight: 60,\n                          intrinsicWidth: 50,\n                          className: \"framer-govr81\",\n                          name: \"Vector 1014\",\n                          fill: \"rgba(0,0,0,1)\",\n                          \"data-framer-name\": \"Vector 1014\",\n                          svg: '<svg width=\"50\" height=\"60\" viewBox=\"-1 -1 50 60\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M0.874436 30.7296L36.0096 0.349526C36.2703 0.124071 36.6035 0 36.9482 0C37.6068 0 38.1809 0.448365 38.3405 1.0874L38.3489 1.12092C38.4352 1.46673 38.3938 1.83209 38.2323 2.1498L26.8966 24.4429H46.9163C47.0847 24.4429 47.2508 24.4821 47.4014 24.5575C47.7683 24.7412 48 25.1163 48 25.5265V25.5739C48 25.9082 47.8558 26.2264 47.6043 26.4467L12.013 57.6261C11.7379 57.8671 11.3846 58 11.0188 58H10.7665C10.2676 58 9.82471 57.6807 9.66712 57.2073C9.57107 56.9188 9.59226 56.6041 9.72612 56.3311L20.6897 33.9714L1.90199 33.5796C1.25066 33.566 0.670589 33.1642 0.428885 32.5592C0.172196 31.9167 0.351084 31.1821 0.874436 30.7296Z\" fill=\"#FFAC32\" stroke=\"#FFAB34\"/>\\n</svg>\\n'\n                        }), /*#__PURE__*/_jsxs(motion.div, {\n                          className: \"framer-1un89sx\",\n                          name: \"Group 83\",\n                          background: null,\n                          \"data-framer-name\": \"Group 83\",\n                          children: [/*#__PURE__*/_jsxs(motion.div, {\n                            className: \"framer-nljote\",\n                            name: \"Group 81\",\n                            background: null,\n                            \"data-framer-name\": \"Group 81\",\n                            children: [/*#__PURE__*/_jsx(Text, {\n                              withExternalLayout: true,\n                              verticalAlignment: \"center\",\n                              __fromCanvasComponent: true,\n                              alignment: \"center\",\n                              fonts: [\"CUSTOM;Gilroy Semibold\"],\n                              className: \"framer-6gr3oi\",\n                              name: \"450 Proposals\",\n                              rawHTML: \"<span style='font-size: 0; line-height: 0; tab-size: 4; white-space: inherit; word-wrap: inherit'><span style='font-size: 0'><span style=''>450 Proposals</span><br></span></span>\"\n                            }), /*#__PURE__*/_jsx(motion.div, {\n                              className: \"framer-45o3lv\",\n                              name: \"Ellipse 17\",\n                              \"data-framer-name\": \"Ellipse 17\"\n                            })]\n                          }), /*#__PURE__*/_jsxs(motion.div, {\n                            className: \"framer-1iphtj8\",\n                            name: \"Group 80\",\n                            background: null,\n                            \"data-framer-name\": \"Group 80\",\n                            children: [/*#__PURE__*/_jsx(Text, {\n                              withExternalLayout: true,\n                              verticalAlignment: \"center\",\n                              __fromCanvasComponent: true,\n                              alignment: \"center\",\n                              fonts: [\"CUSTOM;Gilroy Semibold\"],\n                              className: \"framer-10nwtbs\",\n                              name: \"20 Open\",\n                              rawHTML: \"<span style='font-size: 0; line-height: 0; tab-size: 4; white-space: inherit; word-wrap: inherit'><span style='font-size: 0'><span style=''>20 Open</span><br></span></span>\"\n                            }), /*#__PURE__*/_jsx(motion.div, {\n                              className: \"framer-1vjmk5z\",\n                              name: \"Ellipse 18\",\n                              \"data-framer-name\": \"Ellipse 18\"\n                            })]\n                          })]\n                        })]\n                      }), /*#__PURE__*/_jsxs(MotionDivWithParallaxTransform, {\n                        className: \"framer-8j5ll0\",\n                        name: \"Group 2282\",\n                        background: null,\n                        \"data-framer-name\": \"Group 2282\",\n                        __framer__speed: 150,\n                        __framer__adjustPosition: true,\n                        __framer__offset: 20,\n                        children: [/*#__PURE__*/_jsx(motion.div, {\n                          className: \"framer-pmmmah\",\n                          name: \"Rectangle 67\",\n                          \"data-framer-name\": \"Rectangle 67\"\n                        }), /*#__PURE__*/_jsx(motion.div, {\n                          className: \"framer-3qfsmv\",\n                          name: \"Rectangle 68\",\n                          \"data-framer-name\": \"Rectangle 68\"\n                        }), /*#__PURE__*/_jsx(Text, {\n                          withExternalLayout: true,\n                          verticalAlignment: \"center\",\n                          __fromCanvasComponent: true,\n                          alignment: \"center\",\n                          fonts: [\"CUSTOM;Gilroy Extrabold\"],\n                          className: \"framer-1hkmxtd\",\n                          name: \"Mirror\",\n                          rawHTML: \"<span style='font-size: 0; line-height: 0; tab-size: 4; white-space: inherit; word-wrap: inherit'><span style='font-size: 0'><span style=''>Mirror</span><br></span></span>\"\n                        }), /*#__PURE__*/_jsx(motion.div, {\n                          className: \"framer-ypolfy\",\n                          name: \"Rectangle 65\",\n                          \"data-framer-name\": \"Rectangle 65\"\n                        }), /*#__PURE__*/_jsx(Text, {\n                          withExternalLayout: true,\n                          verticalAlignment: \"center\",\n                          __fromCanvasComponent: true,\n                          alignment: \"center\",\n                          fonts: [\"CUSTOM;Gilroy Extrabold\"],\n                          className: \"framer-1a7arim\",\n                          name: \"View Posts\",\n                          rawHTML: \"<span style='font-size: 0; line-height: 0; tab-size: 4; white-space: inherit; word-wrap: inherit'><span style='font-size: 0'><span style=''>View Posts</span><br></span></span>\"\n                        }), /*#__PURE__*/_jsxs(motion.div, {\n                          className: \"framer-2zffek\",\n                          name: \"Group 83\",\n                          background: null,\n                          \"data-framer-name\": \"Group 83\",\n                          children: [/*#__PURE__*/_jsx(Text, {\n                            withExternalLayout: true,\n                            verticalAlignment: \"center\",\n                            __fromCanvasComponent: true,\n                            alignment: \"center\",\n                            fonts: [\"CUSTOM;Gilroy Semibold\"],\n                            className: \"framer-16vsfch\",\n                            name: \"15 Posts\",\n                            rawHTML: \"<span style='font-size: 0; line-height: 0; tab-size: 4; white-space: inherit; word-wrap: inherit'><span style='font-size: 0'><span style=''>15 Posts</span><br></span></span>\"\n                          }), /*#__PURE__*/_jsx(motion.div, {\n                            className: \"framer-zsh0pn\",\n                            name: \"Ellipse 18\",\n                            \"data-framer-name\": \"Ellipse 18\"\n                          })]\n                        }), /*#__PURE__*/_jsxs(motion.div, {\n                          className: \"framer-1pjqeyb\",\n                          name: \"Group 2281\",\n                          background: null,\n                          \"data-framer-name\": \"Group 2281\",\n                          children: [/*#__PURE__*/_jsx(motion.div, {\n                            className: \"framer-mwg39j\",\n                            name: \"Ellipse 19\",\n                            \"data-framer-name\": \"Ellipse 19\"\n                          }), /*#__PURE__*/_jsx(motion.div, {\n                            className: \"framer-ukrwcs\",\n                            name: \"Rectangle 1465\",\n                            \"data-framer-name\": \"Rectangle 1465\"\n                          })]\n                        })]\n                      })]\n                    })\n                  })]\n                })\n              })\n            })\n          }), /*#__PURE__*/_jsx(PropertyOverrides, {\n            breakpoint: baseVariant,\n            overrides: {\n              llZCUywb0: {\n                direction: \"vertical\",\n                __contentWrapperStyle: {\n                  width: \"100%\",\n                  height: \"auto\",\n                  padding: \"52px 40px 52px 40px\"\n                },\n                transformTemplate: undefined\n              }\n            },\n            children: /*#__PURE__*/_jsx(Stack, {\n              className: \"framer-17v8myx\",\n              name: \"Desktop\",\n              as: \"section\",\n              direction: \"horizontal\",\n              distribution: \"center\",\n              alignment: \"center\",\n              gap: 0,\n              __fromCanvasComponent: true,\n              __contentWrapperStyle: {\n                width: \"100%\",\n                height: \"auto\",\n                padding: \"100px 40px 100px 40px\"\n              },\n              \"data-framer-name\": \"Desktop\",\n              children: /*#__PURE__*/_jsx(PropertyOverrides, {\n                breakpoint: baseVariant,\n                overrides: {\n                  llZCUywb0: {\n                    direction: \"vertical\",\n                    __contentWrapperStyle: {\n                      width: \"100%\",\n                      height: \"auto\",\n                      padding: \"0px 0px 0px 0px\",\n                      maxWidth: \"1000px\"\n                    },\n                    background: null\n                  }\n                },\n                children: /*#__PURE__*/_jsxs(Stack, {\n                  className: \"framer-14g5k85\",\n                  background: null,\n                  direction: \"horizontal\",\n                  distribution: \"start\",\n                  alignment: \"center\",\n                  gap: 0,\n                  __fromCanvasComponent: true,\n                  __contentWrapperStyle: {\n                    width: \"100%\",\n                    height: \"auto\",\n                    padding: \"0px 0px 0px 0px\",\n                    maxWidth: \"1000px\"\n                  },\n                  children: [/*#__PURE__*/_jsx(PropertyOverrides, {\n                    breakpoint: baseVariant,\n                    overrides: {\n                      llZCUywb0: {\n                        alignment: \"center\",\n                        __contentWrapperStyle: {\n                          width: \"100%\",\n                          height: \"100%\",\n                          padding: \"0px 0px 44px 0px\",\n                          maxWidth: \"740px\"\n                        },\n                        transformTemplate: undefined,\n                        background: null\n                      }\n                    },\n                    children: /*#__PURE__*/_jsxs(Stack, {\n                      className: \"framer-gbdrko\",\n                      background: null,\n                      direction: \"vertical\",\n                      distribution: \"start\",\n                      alignment: \"start\",\n                      gap: 20,\n                      __fromCanvasComponent: true,\n                      __contentWrapperStyle: {\n                        width: \"100%\",\n                        height: \"auto\",\n                        padding: \"0px 0px 44px 0px\",\n                        maxWidth: \"740px\"\n                      },\n                      children: [/*#__PURE__*/_jsx(PropertyOverrides, {\n                        breakpoint: baseVariant,\n                        overrides: {\n                          llZCUywb0: {\n                            fonts: [\"CUSTOM;Gilroy Bold\"],\n                            __htmlStructure: '<h4 style=\"--framer-line-height:1.1em; --framer-text-alignment:center;\"><span style=\"--framer-font-family:&quot;Gilroy Bold&quot;, serif; --framer-font-style:normal; --framer-font-weight:400; --font-selector:Q1VTVE9NO0dpbHJveSBCb2xk; --framer-text-color:var(--extracted-1wi65aa); --framer-font-size:44px; --framer-letter-spacing:-1.5px;\">{{ text-placeholder }}</span></h4>',\n                            htmlFromDesign: '<h4 style=\"--framer-line-height:1.1em; --framer-text-alignment:center;\"><span style=\"--framer-font-family:&quot;Gilroy Bold&quot;, serif; --framer-font-style:normal; --framer-font-weight:400; --font-selector:Q1VTVE9NO0dpbHJveSBCb2xk; --framer-text-color:var(--extracted-1wi65aa); --framer-font-size:44px; --framer-letter-spacing:-1.5px;\">Curate, manage and interact</span><span style=\"--framer-font-family:&quot;Gilroy Bold&quot;, serif; --framer-font-style:normal; --framer-font-weight:400; --font-selector:Q1VTVE9NO0dpbHJveSBCb2xk; --framer-text-color:var(--extracted-afnvhb); --framer-font-size:44px; --framer-letter-spacing:-1.5px;\"><br></span><span style=\"--framer-font-family:&quot;Gilroy Bold&quot;, serif; --framer-font-style:normal; --framer-font-weight:400; --font-selector:Q1VTVE9NO0dpbHJveSBCb2xk; --framer-text-color:var(--extracted-h2vp2a); --framer-font-size:44px; --framer-letter-spacing:-1.5px;\">with DAOs.</span></h4>',\n                            preload: []\n                          }\n                        },\n                        children: /*#__PURE__*/_jsx(RichText, {\n                          className: \"framer-lrc2dx\",\n                          style: {\n                            whiteSpace: \"pre-wrap\",\n                            wordWrap: \"break-word\",\n                            wordBreak: \"break-word\",\n                            \"--framer-link-text-color\": \"rgb(0, 153, 255)\",\n                            \"--framer-link-text-decoration\": \"underline\",\n                            \"--framer-paragraph-spacing\": \"0px\",\n                            \"--extracted-1wi65aa\": \"rgb(171, 74, 186)\",\n                            \"--extracted-afnvhb\": \"rgb(0, 255, 163)\",\n                            \"--extracted-h2vp2a\": \"rgb(171, 74, 186)\"\n                          },\n                          fonts: [\"CUSTOM;Gilroy Bold\"],\n                          withExternalLayout: true,\n                          verticalAlignment: \"top\",\n                          __fromCanvasComponent: true,\n                          initial: {\n                            x: 0,\n                            y: 0,\n                            scale: .5,\n                            opacity: 0,\n                            transformPerspective: 1200,\n                            rotate: 0,\n                            rotateX: 0,\n                            rotateY: 0\n                          },\n                          animate: {\n                            x: 0,\n                            y: 0,\n                            scale: 1,\n                            opacity: 1,\n                            transformPerspective: 1200,\n                            rotate: 0,\n                            rotateX: 0,\n                            rotateY: 0,\n                            transition: {\n                              type: \"spring\",\n                              stiffness: 147,\n                              damping: 47,\n                              mass: 1.4,\n                              delay: 0\n                            }\n                          },\n                          exit: {\n                            x: 0,\n                            y: 0,\n                            scale: .5,\n                            opacity: 0,\n                            transformPerspective: 1200,\n                            rotate: 0,\n                            rotateX: 0,\n                            rotateY: 0,\n                            transition: {\n                              type: \"spring\",\n                              stiffness: 147,\n                              damping: 47,\n                              mass: 1.4,\n                              delay: 0\n                            }\n                          },\n                          __htmlStructure: '<h4 style=\"--framer-line-height:1.1em; --framer-text-alignment:left;\"><span style=\"--framer-font-family:&quot;Gilroy Bold&quot;, serif; --framer-font-style:normal; --framer-font-weight:400; --font-selector:Q1VTVE9NO0dpbHJveSBCb2xk; --framer-text-color:var(--extracted-1wi65aa); --framer-font-size:44px; --framer-letter-spacing:-1.5px;\">{{ text-placeholder }}</span></h4>',\n                          htmlFromDesign: '<h4 style=\"--framer-line-height:1.1em; --framer-text-alignment:left;\"><span style=\"--framer-font-family:&quot;Gilroy Bold&quot;, serif; --framer-font-style:normal; --framer-font-weight:400; --font-selector:Q1VTVE9NO0dpbHJveSBCb2xk; --framer-text-color:var(--extracted-1wi65aa); --framer-font-size:44px; --framer-letter-spacing:-1.5px;\">Curate, manage and interact</span><span style=\"--framer-font-family:&quot;Gilroy Bold&quot;, serif; --framer-font-style:normal; --framer-font-weight:400; --font-selector:Q1VTVE9NO0dpbHJveSBCb2xk; --framer-text-color:var(--extracted-afnvhb); --framer-font-size:44px; --framer-letter-spacing:-1.5px;\"><br></span><span style=\"--framer-font-family:&quot;Gilroy Bold&quot;, serif; --framer-font-style:normal; --framer-font-weight:400; --font-selector:Q1VTVE9NO0dpbHJveSBCb2xk; --framer-text-color:var(--extracted-h2vp2a); --framer-font-size:44px; --framer-letter-spacing:-1.5px;\">with DAOs.</span></h4>'\n                        })\n                      }), /*#__PURE__*/_jsx(PropertyOverrides, {\n                        breakpoint: baseVariant,\n                        overrides: {\n                          llZCUywb0: {\n                            fonts: [\"CUSTOM;Gilroy Bold\"],\n                            __htmlStructure: '<h3 style=\"--framer-line-height:1.4em; --framer-text-alignment:center;\"><span style=\"--framer-font-family:&quot;Gilroy Bold&quot;, serif; --framer-font-style:normal; --framer-font-weight:400; --font-selector:Q1VTVE9NO0dpbHJveSBCb2xk; --framer-text-color:var(--extracted-1k2zljd); --framer-font-size:20px; --framer-letter-spacing:-0.8px;\">{{ text-placeholder }}</span></h3>',\n                            htmlFromDesign: '<h3 style=\"--framer-line-height:1.4em; --framer-text-alignment:center;\"><span style=\"--framer-font-family:&quot;Gilroy Bold&quot;, serif; --framer-font-style:normal; --framer-font-weight:400; --font-selector:Q1VTVE9NO0dpbHJveSBCb2xk; --framer-text-color:var(--extracted-1k2zljd); --framer-font-size:20px; --framer-letter-spacing:-0.8px;\">Tools for organizing and scaling sustainable communities engineered for growth.</span></h3>',\n                            preload: []\n                          }\n                        },\n                        children: /*#__PURE__*/_jsx(RichText, {\n                          className: \"framer-cyoib6\",\n                          style: {\n                            whiteSpace: \"pre-wrap\",\n                            wordWrap: \"break-word\",\n                            wordBreak: \"break-word\",\n                            maxWidth: \"600px\",\n                            \"--framer-paragraph-spacing\": \"0px\",\n                            \"--extracted-1k2zljd\": \"rgb(255, 255, 255)\"\n                          },\n                          fonts: [\"CUSTOM;Gilroy Bold\"],\n                          withExternalLayout: true,\n                          verticalAlignment: \"top\",\n                          __fromCanvasComponent: true,\n                          initial: {\n                            x: 0,\n                            y: 0,\n                            scale: .5,\n                            opacity: 0,\n                            transformPerspective: 1200,\n                            rotate: 0,\n                            rotateX: 0,\n                            rotateY: 0\n                          },\n                          animate: {\n                            x: 0,\n                            y: 0,\n                            scale: 1,\n                            opacity: 1,\n                            transformPerspective: 1200,\n                            rotate: 0,\n                            rotateX: 0,\n                            rotateY: 0,\n                            transition: {\n                              type: \"spring\",\n                              stiffness: 147,\n                              damping: 47,\n                              mass: 1.4,\n                              delay: .4\n                            }\n                          },\n                          exit: {\n                            x: 0,\n                            y: 0,\n                            scale: .5,\n                            opacity: 0,\n                            transformPerspective: 1200,\n                            rotate: 0,\n                            rotateX: 0,\n                            rotateY: 0,\n                            transition: {\n                              type: \"spring\",\n                              stiffness: 147,\n                              damping: 47,\n                              mass: 1.4,\n                              delay: .4\n                            }\n                          },\n                          __htmlStructure: '<h3 style=\"--framer-line-height:1.4em; --framer-text-alignment:left;\"><span style=\"--framer-font-family:&quot;Gilroy Bold&quot;, serif; --framer-font-style:normal; --framer-font-weight:400; --font-selector:Q1VTVE9NO0dpbHJveSBCb2xk; --framer-text-color:var(--extracted-1k2zljd); --framer-font-size:23px; --framer-letter-spacing:-0.8px;\">{{ text-placeholder }}</span></h3>',\n                          htmlFromDesign: '<h3 style=\"--framer-line-height:1.4em; --framer-text-alignment:left;\"><span style=\"--framer-font-family:&quot;Gilroy Bold&quot;, serif; --framer-font-style:normal; --framer-font-weight:400; --font-selector:Q1VTVE9NO0dpbHJveSBCb2xk; --framer-text-color:var(--extracted-1k2zljd); --framer-font-size:23px; --framer-letter-spacing:-0.8px;\">Tools for organizing and scaling sustainable communities engineered for growth.</span></h3>'\n                        })\n                      }), isDisplayed1() && /*#__PURE__*/_jsx(Container, {\n                        className: \"framer-1hkxemu-container hidden-1pgycd0\",\n                        exit: {\n                          x: 0,\n                          y: 0,\n                          scale: .5,\n                          opacity: 0,\n                          transformPerspective: 1200,\n                          rotate: 0,\n                          rotateX: 0,\n                          rotateY: 0,\n                          transition: {\n                            type: \"spring\",\n                            stiffness: 147,\n                            damping: 47,\n                            mass: 1.4,\n                            delay: .4\n                          }\n                        },\n                        initial: {\n                          x: 0,\n                          y: 0,\n                          scale: .5,\n                          opacity: 0,\n                          transformPerspective: 1200,\n                          rotate: 0,\n                          rotateX: 0,\n                          rotateY: 0\n                        },\n                        animate: {\n                          x: 0,\n                          y: 0,\n                          scale: 1,\n                          opacity: 1,\n                          transformPerspective: 1200,\n                          rotate: 0,\n                          rotateX: 0,\n                          rotateY: 0,\n                          transition: {\n                            type: \"spring\",\n                            stiffness: 147,\n                            damping: 47,\n                            mass: 1.4,\n                            delay: .4\n                          }\n                        },\n                        children: /*#__PURE__*/_jsx(Lol, {\n                          width: \"100%\",\n                          height: \"100%\",\n                          layoutId: \"HTYJQ3s48\",\n                          id: \"HTYJQ3s48\",\n                          style: {\n                            width: \"100%\",\n                            height: \"100%\"\n                          }\n                        })\n                      })]\n                    })\n                  }), /*#__PURE__*/_jsx(PropertyOverrides, {\n                    breakpoint: baseVariant,\n                    overrides: {\n                      llZCUywb0: {\n                        transformTemplate: undefined\n                      }\n                    },\n                    children: /*#__PURE__*/_jsx(motion.div, {\n                      className: \"framer-1v6cn14\",\n                      initial: {\n                        x: 0,\n                        y: 0,\n                        scale: .5,\n                        opacity: 0,\n                        transformPerspective: 1200,\n                        rotate: 0,\n                        rotateX: 0,\n                        rotateY: 0\n                      },\n                      animate: {\n                        x: 0,\n                        y: 0,\n                        scale: 1,\n                        opacity: 1,\n                        transformPerspective: 1200,\n                        rotate: 0,\n                        rotateX: 0,\n                        rotateY: 0,\n                        transition: {\n                          type: \"spring\",\n                          stiffness: 147,\n                          damping: 47,\n                          mass: 1.4,\n                          delay: .4\n                        }\n                      },\n                      exit: {\n                        x: 0,\n                        y: 0,\n                        scale: .5,\n                        opacity: 0,\n                        transformPerspective: 1200,\n                        rotate: 0,\n                        rotateX: 0,\n                        rotateY: 0,\n                        transition: {\n                          type: \"spring\",\n                          stiffness: 147,\n                          damping: 47,\n                          mass: 1.4,\n                          delay: .4\n                        }\n                      },\n                      children: /*#__PURE__*/_jsx(PropertyOverrides, {\n                        breakpoint: baseVariant,\n                        overrides: {\n                          llZCUywb0: {\n                            transformTemplate: (_, t) => `rotate(27deg) ${t}`\n                          }\n                        },\n                        children: /*#__PURE__*/_jsx(Container, {\n                          className: \"framer-pheg5j-container\",\n                          transformTemplate: (_, t) => `rotate(27deg) ${t}`,\n                          children: /*#__PURE__*/_jsx(PropertyOverrides, {\n                            breakpoint: baseVariant,\n                            overrides: {\n                              llZCUywb0: {\n                                style: {\n                                  width: \"100%\",\n                                  height: \"100%\"\n                                }\n                              }\n                            },\n                            children: /*#__PURE__*/_jsx(Lottie, {\n                              width: \"100%\",\n                              height: \"100%\",\n                              layoutId: \"zZ76vQdgj\",\n                              id: \"zZ76vQdgj\",\n                              srcType: \"URL\",\n                              srcUrl: \"https://assets2.lottiefiles.com/packages/lf20_hi7ufv9e.json\",\n                              playing: true,\n                              loop: true,\n                              isForwardsDirection: true,\n                              speed: 1,\n                              progress: 0,\n                              poster: \"Auto\",\n                              posterProgress: 0,\n                              style: {\n                                width: \"100%\",\n                                height: \"100%\"\n                              }\n                            })\n                          })\n                        })\n                      })\n                    })\n                  })]\n                })\n              })\n            })\n          }), isDisplayed2() && /*#__PURE__*/_jsx(Container, {\n            className: \"framer-19wchqy-container hidden-1pgycd0\",\n            children: /*#__PURE__*/_jsx(Lottie1, {\n              width: \"100%\",\n              height: \"100%\",\n              layoutId: \"LqXyTI8nP\",\n              id: \"LqXyTI8nP\",\n              srcType: \"URL\",\n              srcUrl: \"https://assets2.lottiefiles.com/packages/lf20_hfi0tnw4.json\",\n              playing: true,\n              loop: true,\n              isForwardsDirection: true,\n              speed: 1,\n              progress: 0,\n              poster: \"Auto\",\n              posterProgress: 0,\n              style: {\n                width: \"100%\",\n                height: \"100%\"\n              }\n            })\n          }), /*#__PURE__*/_jsx(MotionDivWithStyleAppearEffect, {\n            className: \"framer-tn7vw6\",\n            __framer__threshold: .5,\n            __framer__animateOnce: true,\n            __framer__enter: {\n              x: 0,\n              y: 0,\n              scale: 1,\n              opacity: 0,\n              transformPerspective: 1200,\n              rotate: 0,\n              rotateX: 0,\n              rotateY: 0\n            },\n            __framer__exit: {\n              x: 0,\n              y: 0,\n              scale: 1,\n              opacity: 0,\n              transformPerspective: 1200,\n              rotate: 0,\n              rotateX: 0,\n              rotateY: 0,\n              transition: {\n                type: \"spring\",\n                stiffness: 147,\n                damping: 47,\n                mass: 1.4,\n                delay: .2\n              }\n            },\n            __framer__animate: {\n              x: 0,\n              y: 0,\n              scale: 1,\n              opacity: 1,\n              transformPerspective: 1200,\n              rotate: 0,\n              rotateX: 0,\n              rotateY: 0,\n              transition: {\n                type: \"spring\",\n                stiffness: 147,\n                damping: 47,\n                mass: 1.4,\n                delay: .2\n              }\n            },\n            children: /*#__PURE__*/_jsx(RichText, {\n              className: \"framer-15jp3au\",\n              style: {\n                whiteSpace: \"pre\",\n                \"--framer-link-text-color\": \"rgb(0, 153, 255)\",\n                \"--framer-link-text-decoration\": \"underline\",\n                \"--framer-paragraph-spacing\": \"0px\",\n                textShadow: \"0px 0px 10px rgb(255, 255, 255)\",\n                \"--extracted-1w3ko1f\": \"rgb(255, 255, 255)\",\n                \"--extracted-5dqwso\": \"rgb(255, 255, 255)\"\n              },\n              fonts: [\"CUSTOM;Gilroy Extrabold\"],\n              withExternalLayout: true,\n              verticalAlignment: \"top\",\n              __fromCanvasComponent: true,\n              __htmlStructure: '<p><span style=\"--framer-font-family:&quot;Gilroy Extrabold&quot;, serif; --framer-font-style:normal; --framer-font-weight:400; --font-selector:Q1VTVE9NO0dpbHJveSBFeHRyYWJvbGQ=; --framer-text-color:var(--extracted-1w3ko1f);\">{{ text-placeholder }}</span></p>',\n              htmlFromDesign: '<p><span style=\"--framer-font-family:&quot;Gilroy Extrabold&quot;, serif; --framer-font-style:normal; --framer-font-weight:400; --font-selector:Q1VTVE9NO0dpbHJveSBFeHRyYWJvbGQ=; --framer-text-color:var(--extracted-1w3ko1f);\">Conferences</span></p><p><span style=\"--framer-font-family:&quot;Gilroy Extrabold&quot;, serif; --framer-font-style:normal; --framer-font-weight:400; --font-selector:Q1VTVE9NO0dpbHJveSBFeHRyYWJvbGQ=; --framer-text-color:var(--extracted-5dqwso);\">Passes</span></p>'\n            })\n          }), /*#__PURE__*/_jsx(MotionDivWithStyleAppearEffect, {\n            className: \"framer-1p26ba8\",\n            transformTemplate: (_, t) => `rotate(10deg) ${t}`,\n            __framer__threshold: .5,\n            __framer__animateOnce: true,\n            __framer__enter: {\n              x: 0,\n              y: 0,\n              scale: 1,\n              opacity: 0,\n              transformPerspective: 1200,\n              rotate: 0,\n              rotateX: 0,\n              rotateY: 0\n            },\n            __framer__exit: {\n              x: 0,\n              y: 0,\n              scale: 1,\n              opacity: 0,\n              transformPerspective: 1200,\n              rotate: 0,\n              rotateX: 0,\n              rotateY: 0,\n              transition: {\n                type: \"spring\",\n                stiffness: 147,\n                damping: 47,\n                mass: 1.4,\n                delay: .8\n              }\n            },\n            __framer__animate: {\n              x: 0,\n              y: 0,\n              scale: 1,\n              opacity: 1,\n              transformPerspective: 1200,\n              rotate: 10,\n              rotateX: 0,\n              rotateY: 0,\n              transition: {\n                type: \"spring\",\n                stiffness: 147,\n                damping: 47,\n                mass: 1.4,\n                delay: .8\n              }\n            },\n            children: /*#__PURE__*/_jsx(RichText, {\n              className: \"framer-vmzdff\",\n              style: {\n                whiteSpace: \"pre\",\n                \"--framer-link-text-color\": \"rgb(0, 153, 255)\",\n                \"--framer-link-text-decoration\": \"underline\",\n                \"--framer-paragraph-spacing\": \"0px\",\n                textShadow: \"0px 0px 10px rgb(255, 255, 255)\",\n                \"--extracted-1w3ko1f\": \"rgb(255, 255, 255)\"\n              },\n              fonts: [\"CUSTOM;Gilroy Extrabold\"],\n              withExternalLayout: true,\n              verticalAlignment: \"top\",\n              __fromCanvasComponent: true,\n              __htmlStructure: '<p><span style=\"--framer-font-family:&quot;Gilroy Extrabold&quot;, serif; --framer-font-style:normal; --framer-font-weight:400; --font-selector:Q1VTVE9NO0dpbHJveSBFeHRyYWJvbGQ=; --framer-text-color:var(--extracted-1w3ko1f);\">{{ text-placeholder }}</span></p>',\n              htmlFromDesign: '<p><span style=\"--framer-font-family:&quot;Gilroy Extrabold&quot;, serif; --framer-font-style:normal; --framer-font-weight:400; --font-selector:Q1VTVE9NO0dpbHJveSBFeHRyYWJvbGQ=; --framer-text-color:var(--extracted-1w3ko1f);\">Rewards Card</span></p>'\n            })\n          }), /*#__PURE__*/_jsx(MotionDivWithStyleAppearEffect, {\n            className: \"framer-1f18v0x\",\n            transformTemplate: (_, t) => `rotate(20deg) ${t}`,\n            __framer__threshold: .5,\n            __framer__animateOnce: true,\n            __framer__enter: {\n              x: 0,\n              y: 0,\n              scale: 1,\n              opacity: 0,\n              transformPerspective: 1200,\n              rotate: 0,\n              rotateX: 0,\n              rotateY: 0\n            },\n            __framer__exit: {\n              x: 0,\n              y: 0,\n              scale: 1,\n              opacity: 0,\n              transformPerspective: 1200,\n              rotate: 0,\n              rotateX: 0,\n              rotateY: 0,\n              transition: {\n                type: \"spring\",\n                stiffness: 147,\n                damping: 47,\n                mass: 1.4,\n                delay: 1.2\n              }\n            },\n            __framer__animate: {\n              x: 0,\n              y: 0,\n              scale: 1,\n              opacity: 1,\n              transformPerspective: 1200,\n              rotate: 20,\n              rotateX: 0,\n              rotateY: 0,\n              transition: {\n                type: \"spring\",\n                stiffness: 147,\n                damping: 47,\n                mass: 1.4,\n                delay: 1.2\n              }\n            },\n            children: /*#__PURE__*/_jsx(RichText, {\n              className: \"framer-udy8d1\",\n              style: {\n                whiteSpace: \"pre\",\n                \"--framer-link-text-color\": \"rgb(0, 153, 255)\",\n                \"--framer-link-text-decoration\": \"underline\",\n                \"--framer-paragraph-spacing\": \"0px\",\n                textShadow: \"0px 0px 10px rgb(255, 255, 255)\",\n                \"--extracted-1w3ko1f\": \"rgb(255, 255, 255)\",\n                \"--extracted-5dqwso\": \"rgb(255, 255, 255)\"\n              },\n              fonts: [\"CUSTOM;Gilroy Extrabold\"],\n              withExternalLayout: true,\n              verticalAlignment: \"top\",\n              __fromCanvasComponent: true,\n              __htmlStructure: '<p><span style=\"--framer-font-family:&quot;Gilroy Extrabold&quot;, serif; --framer-font-style:normal; --framer-font-weight:400; --font-selector:Q1VTVE9NO0dpbHJveSBFeHRyYWJvbGQ=; --framer-text-color:var(--extracted-1w3ko1f);\">{{ text-placeholder }}</span></p>',\n              htmlFromDesign: '<p><span style=\"--framer-font-family:&quot;Gilroy Extrabold&quot;, serif; --framer-font-style:normal; --framer-font-weight:400; --font-selector:Q1VTVE9NO0dpbHJveSBFeHRyYWJvbGQ=; --framer-text-color:var(--extracted-1w3ko1f);\">Exclusive Partner</span></p><p><span style=\"--framer-font-family:&quot;Gilroy Extrabold&quot;, serif; --framer-font-style:normal; --framer-font-weight:400; --font-selector:Q1VTVE9NO0dpbHJveSBFeHRyYWJvbGQ=; --framer-text-color:var(--extracted-5dqwso);\">Discounts</span></p>'\n            })\n          }), /*#__PURE__*/_jsx(MotionDivWithStyleAppearEffect, {\n            className: \"framer-zt33yn\",\n            transformTemplate: (_, t) => `rotate(30deg) ${t}`,\n            __framer__threshold: .5,\n            __framer__animateOnce: true,\n            __framer__enter: {\n              x: 0,\n              y: 0,\n              scale: 1,\n              opacity: 0,\n              transformPerspective: 1200,\n              rotate: 0,\n              rotateX: 0,\n              rotateY: 0\n            },\n            __framer__exit: {\n              x: 0,\n              y: 0,\n              scale: 1,\n              opacity: 0,\n              transformPerspective: 1200,\n              rotate: 0,\n              rotateX: 0,\n              rotateY: 0,\n              transition: {\n                type: \"spring\",\n                stiffness: 147,\n                damping: 47,\n                mass: 1.4,\n                delay: 1.6\n              }\n            },\n            __framer__animate: {\n              x: 0,\n              y: 0,\n              scale: 1,\n              opacity: 1,\n              transformPerspective: 1200,\n              rotate: 30,\n              rotateX: 0,\n              rotateY: 0,\n              transition: {\n                type: \"spring\",\n                stiffness: 147,\n                damping: 47,\n                mass: 1.4,\n                delay: 1.6\n              }\n            },\n            children: /*#__PURE__*/_jsx(RichText, {\n              className: \"framer-1rboma6\",\n              style: {\n                whiteSpace: \"pre\",\n                \"--framer-link-text-color\": \"rgb(0, 153, 255)\",\n                \"--framer-link-text-decoration\": \"underline\",\n                \"--framer-paragraph-spacing\": \"0px\",\n                textShadow: \"0px 0px 10px rgb(255, 255, 255)\",\n                \"--extracted-1w3ko1f\": \"rgb(255, 255, 255)\",\n                \"--extracted-5dqwso\": \"rgb(255, 255, 255)\"\n              },\n              name: \"Crypto Rewards\",\n              fonts: [\"CUSTOM;Gilroy Extrabold\"],\n              withExternalLayout: true,\n              verticalAlignment: \"top\",\n              __fromCanvasComponent: true,\n              __htmlStructure: '<p><span style=\"--framer-font-family:&quot;Gilroy Extrabold&quot;, serif; --framer-font-style:normal; --framer-font-weight:400; --font-selector:Q1VTVE9NO0dpbHJveSBFeHRyYWJvbGQ=; --framer-text-color:var(--extracted-1w3ko1f);\">{{ text-placeholder }}</span></p>',\n              htmlFromDesign: '<p><span style=\"--framer-font-family:&quot;Gilroy Extrabold&quot;, serif; --framer-font-style:normal; --framer-font-weight:400; --font-selector:Q1VTVE9NO0dpbHJveSBFeHRyYWJvbGQ=; --framer-text-color:var(--extracted-1w3ko1f);\">Crypto</span></p><p><span style=\"--framer-font-family:&quot;Gilroy Extrabold&quot;, serif; --framer-font-style:normal; --framer-font-weight:400; --font-selector:Q1VTVE9NO0dpbHJveSBFeHRyYWJvbGQ=; --framer-text-color:var(--extracted-5dqwso);\">Rewards</span></p>'\n            })\n          }), isDisplayed3() && /*#__PURE__*/_jsxs(motion.div, {\n            className: \"framer-1n7nckk hidden-1pgycd0\",\n            name: \"Forum\",\n            background: null,\n            \"data-framer-name\": \"Forum\",\n            children: [isDisplayed4() && /*#__PURE__*/_jsxs(motion.div, {\n              className: \"framer-rilugp hidden-1pgycd0\",\n              name: \"Rectangle 64\",\n              \"data-framer-name\": \"Rectangle 64\",\n              children: [/*#__PURE__*/_jsx(RichText, {\n                className: \"framer-nv2006\",\n                style: {\n                  whiteSpace: \"pre\",\n                  \"--framer-paragraph-spacing\": \"0px\",\n                  \"--extracted-1w3ko1f\": \"rgb(255, 255, 255)\"\n                },\n                transformTemplate: (_, t) => `translate(-50%, -50%) ${t}`,\n                name: \"Github\",\n                fonts: [\"GF;Gilroy-800\"],\n                withExternalLayout: true,\n                verticalAlignment: \"center\",\n                __fromCanvasComponent: true,\n                center: true,\n                __htmlStructure: '<p style=\"--framer-text-alignment:center;\"><span style=\"--framer-font-family:&quot;Gilroy&quot;, serif; --framer-font-style:normal; --framer-font-weight:800; --font-selector:R0Y7R2lscm95LTgwMA==; --framer-text-color:var(--extracted-1w3ko1f); --framer-font-size:24px;\">{{ text-placeholder }}</span></p>',\n                htmlFromDesign: '<p style=\"--framer-text-alignment:center;\"><span style=\"--framer-font-family:&quot;Gilroy&quot;, serif; --framer-font-style:normal; --framer-font-weight:800; --font-selector:R0Y7R2lscm95LTgwMA==; --framer-text-color:var(--extracted-1w3ko1f); --framer-font-size:24px;\">50 PRs Merged</span></p>'\n              }), /*#__PURE__*/_jsx(RichText, {\n                className: \"framer-qfx75q\",\n                style: {\n                  whiteSpace: \"pre\",\n                  \"--framer-paragraph-spacing\": \"0px\",\n                  \"--extracted-1w3ko1f\": \"rgb(196, 196, 196)\"\n                },\n                transformTemplate: (_, t) => `translateX(-50%) ${t}`,\n                name: \"450 Merges\",\n                fonts: [\"GF;Gilroy-600\"],\n                withExternalLayout: true,\n                verticalAlignment: \"center\",\n                __fromCanvasComponent: true,\n                center: \"x\",\n                __htmlStructure: '<p style=\"--framer-font-size:10px; --framer-text-alignment:left;\"><span style=\"--framer-font-family:&quot;Gilroy&quot;, serif; --framer-font-style:normal; --framer-font-weight:600; --font-selector:R0Y7R2lscm95LTYwMA==; --framer-text-color:var(--extracted-1w3ko1f); --framer-font-size:10px;\">{{ text-placeholder }}</span></p>',\n                htmlFromDesign: '<p style=\"--framer-font-size:10px; --framer-text-alignment:left;\"><span style=\"--framer-font-family:&quot;Gilroy&quot;, serif; --framer-font-style:normal; --framer-font-weight:600; --font-selector:R0Y7R2lscm95LTYwMA==; --framer-text-color:var(--extracted-1w3ko1f); --framer-font-size:10px;\">100 Merges to Next Tier</span></p>'\n              })]\n            }), /*#__PURE__*/_jsx(motion.div, {\n              className: \"framer-1c8gvp9\",\n              name: \"Rectangle 65\",\n              \"data-framer-name\": \"Rectangle 65\",\n              children: /*#__PURE__*/_jsx(RichText, {\n                className: \"framer-1p6vq5w\",\n                style: {\n                  whiteSpace: \"pre\",\n                  \"--framer-paragraph-spacing\": \"0px\"\n                },\n                transformTemplate: (_, t) => `translate(-50%, -50%) ${t}`,\n                name: \"Join Git\",\n                fonts: [\"GF;Gilroy-800\"],\n                withExternalLayout: true,\n                verticalAlignment: \"center\",\n                __fromCanvasComponent: true,\n                center: true,\n                __htmlStructure: '<p style=\"--framer-text-alignment:center;\"><span style=\"--framer-font-family:&quot;Gilroy&quot;, serif; --framer-font-style:normal; --framer-font-weight:800; --font-selector:R0Y7R2lscm95LTgwMA==; --framer-font-size:20px; --framer-text-transform:capitalize;\">{{ text-placeholder }}</span></p>',\n                htmlFromDesign: '<p style=\"--framer-text-alignment:center;\"><span style=\"--framer-font-family:&quot;Gilroy&quot;, serif; --framer-font-style:normal; --framer-font-weight:800; --font-selector:R0Y7R2lscm95LTgwMA==; --framer-font-size:20px; --framer-text-transform:capitalize;\">Claim Rewards</span></p>'\n              })\n            }), /*#__PURE__*/_jsx(SVG, {\n              withExternalLayout: true,\n              intrinsicHeight: 55,\n              intrinsicWidth: 57,\n              className: \"framer-1b1khrf\",\n              name: \"Vector\",\n              fill: \"rgba(0,0,0,1)\",\n              \"data-framer-name\": \"Vector\",\n              svg: '<svg width=\"57\" height=\"55\" viewBox=\"0 0 57 55\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M28.5 0C12.7538 0 0 12.6175 0 28.1956C0 40.6721 8.15812 51.2102 19.4869 54.9461C20.9119 55.1928 21.4463 54.347 21.4463 53.6068C21.4463 52.9372 21.4106 50.7168 21.4106 48.3554C14.25 49.6595 12.3975 46.6284 11.8275 45.0424C11.5069 44.2318 10.1175 41.7295 8.90625 41.0598C7.90875 40.5311 6.48375 39.2271 8.87063 39.1919C11.115 39.1566 12.7181 41.236 13.2525 42.0819C15.8175 46.3465 19.9144 45.1482 21.5531 44.408C21.8025 42.5753 22.5506 41.3418 23.37 40.6369C17.0288 39.932 10.4025 37.5001 10.4025 26.7153C10.4025 23.649 11.5069 21.1114 13.3238 19.1378C13.0388 18.4329 12.0412 15.5428 13.6087 11.6659C13.6087 11.6659 15.9956 10.9258 21.4463 14.556C23.7262 13.9216 26.1488 13.6044 28.5713 13.6044C30.9938 13.6044 33.4163 13.9216 35.6963 14.556C41.1469 10.8905 43.5338 11.6659 43.5338 11.6659C45.1013 15.5428 44.1037 18.4329 43.8187 19.1378C45.6356 21.1114 46.74 23.6138 46.74 26.7153C46.74 37.5354 40.0781 39.932 33.7369 40.6369C34.77 41.518 35.6606 43.2097 35.6606 45.8531C35.6606 49.6242 35.625 52.6552 35.625 53.6068C35.625 54.347 36.1594 55.2281 37.5844 54.9461C43.2421 53.0565 48.1585 49.4592 51.6414 44.6605C55.1244 39.8617 56.9985 34.1033 57 28.1956C57 12.6175 44.2463 0 28.5 0Z\" fill=\"white\"/>\\n</svg>\\n'\n            })]\n          }), /*#__PURE__*/_jsx(PropertyOverrides, {\n            breakpoint: baseVariant,\n            overrides: {\n              llZCUywb0: {\n                fonts: [\"CUSTOM;Gilroy Bold\", \"CUSTOM;Gilroy Extrabold Italic\"],\n                __htmlStructure: '<h4 style=\"--framer-line-height:1.1em; --framer-text-alignment:center;\"><span style=\"--framer-font-family:&quot;Gilroy Bold&quot;, serif; --framer-font-style:normal; --framer-font-weight:400; --font-selector:Q1VTVE9NO0dpbHJveSBCb2xk; --framer-text-color:var(--extracted-1wi65aa); --framer-font-size:36px; --framer-letter-spacing:-1.5px;\">{{ text-placeholder }}</span></h4>',\n                htmlFromDesign: '<h4 style=\"--framer-line-height:1.1em; --framer-text-alignment:center;\"><span style=\"--framer-font-family:&quot;Gilroy Bold&quot;, serif; --framer-font-style:normal; --framer-font-weight:400; --font-selector:Q1VTVE9NO0dpbHJveSBCb2xk; --framer-text-color:var(--extracted-1wi65aa); --framer-font-size:36px; --framer-letter-spacing:-1.5px;\">Power gamification through</span></h4><h4 style=\"--framer-line-height:1.1em; --framer-text-alignment:center;\"><span style=\"--framer-font-family:&quot;Gilroy Extrabold Italic&quot;, serif; --framer-font-style:normal; --framer-font-weight:400; --font-selector:Q1VTVE9NO0dpbHJveSBFeHRyYWJvbGQgSXRhbGlj; --framer-text-color:var(--extracted-1na3mxk); --framer-font-size:60px; --framer-letter-spacing:-1.5px;\">Community Benefits </span></h4>',\n                preload: [],\n                transformTemplate: (_, t) => `translateX(-50%) ${t}`\n              }\n            },\n            children: /*#__PURE__*/_jsx(RichText, {\n              className: \"framer-3tpvkh\",\n              style: {\n                whiteSpace: \"pre-wrap\",\n                wordWrap: \"break-word\",\n                wordBreak: \"break-word\",\n                \"--framer-link-text-color\": \"rgb(0, 153, 255)\",\n                \"--framer-link-text-decoration\": \"underline\",\n                \"--framer-paragraph-spacing\": \"0px\",\n                \"--extracted-1wi65aa\": \"rgb(14, 208, 244)\",\n                \"--extracted-1na3mxk\": \"rgb(14, 208, 244)\"\n              },\n              transformTemplate: (_, t) => `translateX(-50%) ${t}`,\n              fonts: [\"CUSTOM;Gilroy Bold\", \"CUSTOM;Gilroy Extrabold Italic\"],\n              withExternalLayout: true,\n              verticalAlignment: \"top\",\n              __fromCanvasComponent: true,\n              center: \"x\",\n              __htmlStructure: '<h4 style=\"--framer-line-height:1.1em; --framer-text-alignment:center;\"><span style=\"--framer-font-family:&quot;Gilroy Bold&quot;, serif; --framer-font-style:normal; --framer-font-weight:400; --font-selector:Q1VTVE9NO0dpbHJveSBCb2xk; --framer-text-color:var(--extracted-1wi65aa); --framer-font-size:36px; --framer-letter-spacing:-1.5px;\">{{ text-placeholder }}</span></h4>',\n              htmlFromDesign: '<h4 style=\"--framer-line-height:1.1em; --framer-text-alignment:center;\"><span style=\"--framer-font-family:&quot;Gilroy Bold&quot;, serif; --framer-font-style:normal; --framer-font-weight:400; --font-selector:Q1VTVE9NO0dpbHJveSBCb2xk; --framer-text-color:var(--extracted-1wi65aa); --framer-font-size:36px; --framer-letter-spacing:-1.5px;\">Unlock the power of gamification through</span></h4><h4 style=\"--framer-line-height:1.1em; --framer-text-alignment:center;\"><span style=\"--framer-font-family:&quot;Gilroy Extrabold Italic&quot;, serif; --framer-font-style:normal; --framer-font-weight:400; --font-selector:Q1VTVE9NO0dpbHJveSBFeHRyYWJvbGQgSXRhbGlj; --framer-text-color:var(--extracted-1na3mxk); --framer-font-size:60px; --framer-letter-spacing:-1.5px;\">Community Benefits </span></h4>'\n            })\n          }), /*#__PURE__*/_jsx(PropertyOverrides, {\n            breakpoint: baseVariant,\n            overrides: {\n              llZCUywb0: {\n                direction: \"vertical\",\n                __contentWrapperStyle: {\n                  width: \"100%\",\n                  height: \"auto\",\n                  padding: \"100px 40px 100px 40px\"\n                },\n                transformTemplate: undefined\n              }\n            },\n            children: /*#__PURE__*/_jsx(Stack, {\n              className: \"framer-12vv41o\",\n              name: \"Desktop\",\n              as: \"section\",\n              direction: \"horizontal\",\n              distribution: \"center\",\n              alignment: \"center\",\n              gap: 0,\n              __fromCanvasComponent: true,\n              __contentWrapperStyle: {\n                width: \"100%\",\n                height: \"auto\",\n                padding: \"100px 40px 100px 40px\"\n              },\n              \"data-framer-name\": \"Desktop\",\n              children: /*#__PURE__*/_jsx(PropertyOverrides, {\n                breakpoint: baseVariant,\n                overrides: {\n                  llZCUywb0: {\n                    direction: \"vertical\",\n                    gap: 109,\n                    __contentWrapperStyle: {\n                      width: \"100%\",\n                      height: \"auto\",\n                      padding: \"0px 0px 0px 0px\",\n                      maxWidth: \"1000px\"\n                    },\n                    background: null\n                  }\n                },\n                children: /*#__PURE__*/_jsxs(Stack, {\n                  className: \"framer-meigf5\",\n                  background: null,\n                  direction: \"horizontal\",\n                  distribution: \"start\",\n                  alignment: \"center\",\n                  gap: 41,\n                  __fromCanvasComponent: true,\n                  __contentWrapperStyle: {\n                    width: \"100%\",\n                    height: \"auto\",\n                    padding: \"0px 0px 0px 0px\",\n                    maxWidth: \"1000px\"\n                  },\n                  children: [/*#__PURE__*/_jsxs(motion.div, {\n                    className: \"framer-kv4u07\",\n                    children: [/*#__PURE__*/_jsxs(MotionDivWithParallaxTransform, {\n                      className: \"framer-17d02g8\",\n                      name: \"Task Request\",\n                      background: null,\n                      \"data-framer-name\": \"Task Request\",\n                      __framer__speed: 150,\n                      __framer__adjustPosition: true,\n                      __framer__offset: 20,\n                      children: [/*#__PURE__*/_jsx(motion.div, {\n                        className: \"framer-xrt7pu\",\n                        name: \"Rectangle 72\",\n                        \"data-framer-name\": \"Rectangle 72\"\n                      }), /*#__PURE__*/_jsx(Stack, {\n                        className: \"framer-12s74dm\",\n                        name: \"Frame 1111\",\n                        direction: \"horizontal\",\n                        distribution: \"center\",\n                        alignment: \"start\",\n                        gap: 10,\n                        __fromCanvasComponent: true,\n                        __contentWrapperStyle: {\n                          width: \"100%\",\n                          height: \"auto\",\n                          padding: \"10px 40px 10px 40px\"\n                        },\n                        \"data-framer-name\": \"Frame 1111\",\n                        children: /*#__PURE__*/_jsx(Text, {\n                          withExternalLayout: true,\n                          verticalAlignment: \"center\",\n                          __fromCanvasComponent: true,\n                          alignment: \"center\",\n                          fonts: [\"CUSTOM;Gilroy Extrabold\"],\n                          className: \"framer-1qs15n5\",\n                          name: \"Spec\",\n                          rawHTML: \"<span style='font-size: 0; line-height: 0; tab-size: 4; white-space: inherit; word-wrap: inherit'><span style='font-size: 0'><span style=''>Spec</span><br></span></span>\"\n                        })\n                      }), /*#__PURE__*/_jsx(Stack, {\n                        className: \"framer-1a99zbw\",\n                        name: \"Frame 1108\",\n                        direction: \"vertical\",\n                        distribution: \"start\",\n                        alignment: \"start\",\n                        gap: 10,\n                        __fromCanvasComponent: true,\n                        __contentWrapperStyle: {\n                          width: \"auto\",\n                          height: \"auto\",\n                          padding: \"2px 10px 2px 10px\"\n                        },\n                        \"data-framer-name\": \"Frame 1108\",\n                        children: /*#__PURE__*/_jsx(RichText, {\n                          className: \"framer-13qd38o\",\n                          style: {\n                            whiteSpace: \"pre\",\n                            \"--framer-paragraph-spacing\": \"0px\"\n                          },\n                          name: \"React\",\n                          fonts: [\"CUSTOM;Gilroy Semibold\"],\n                          withExternalLayout: true,\n                          verticalAlignment: \"center\",\n                          __fromCanvasComponent: true,\n                          __htmlStructure: '<p style=\"--framer-font-size:15px; --framer-text-alignment:center;\"><span style=\"--framer-font-family:&quot;Gilroy Semibold&quot;, serif; --framer-font-style:normal; --framer-font-weight:400; --font-selector:Q1VTVE9NO0dpbHJveSBTZW1pYm9sZA==; --framer-font-size:15px;\">{{ text-placeholder }}</span></p>',\n                          htmlFromDesign: '<p style=\"--framer-font-size:15px; --framer-text-alignment:center;\"><span style=\"--framer-font-family:&quot;Gilroy Semibold&quot;, serif; --framer-font-style:normal; --framer-font-weight:400; --font-selector:Q1VTVE9NO0dpbHJveSBTZW1pYm9sZA==; --framer-font-size:15px;\">React</span></p>'\n                        })\n                      }), /*#__PURE__*/_jsx(Stack, {\n                        className: \"framer-178cns7\",\n                        name: \"Frame 1109\",\n                        direction: \"vertical\",\n                        distribution: \"start\",\n                        alignment: \"start\",\n                        gap: 10,\n                        __fromCanvasComponent: true,\n                        __contentWrapperStyle: {\n                          width: \"auto\",\n                          height: \"auto\",\n                          padding: \"2px 10px 2px 10px\"\n                        },\n                        \"data-framer-name\": \"Frame 1109\",\n                        children: /*#__PURE__*/_jsx(PropertyOverrides, {\n                          breakpoint: baseVariant,\n                          overrides: {\n                            llZCUywb0: {\n                              fonts: [\"CUSTOM;Gilroy Semibold\"],\n                              __htmlStructure: '<p style=\"--framer-font-size:15px; --framer-text-alignment:center;\"><span style=\"--framer-font-family:&quot;Gilroy Semibold&quot;, serif; --framer-font-style:normal; --framer-font-weight:400; --font-selector:Q1VTVE9NO0dpbHJveSBTZW1pYm9sZA==; --framer-font-size:15px;\">{{ text-placeholder }}</span></p>',\n                              htmlFromDesign: '<p style=\"--framer-font-size:15px; --framer-text-alignment:center;\"><span style=\"--framer-font-family:&quot;Gilroy Semibold&quot;, serif; --framer-font-style:normal; --framer-font-weight:400; --font-selector:Q1VTVE9NO0dpbHJveSBTZW1pYm9sZA==; --framer-font-size:15px;\">P1</span></p>',\n                              preload: []\n                            }\n                          },\n                          children: /*#__PURE__*/_jsx(RichText, {\n                            className: \"framer-j7eoc3\",\n                            style: {\n                              whiteSpace: \"pre\",\n                              \"--framer-paragraph-spacing\": \"0px\",\n                              \"--extracted-1w3ko1f\": \"rgb(0, 0, 0)\"\n                            },\n                            name: \"P1\",\n                            fonts: [\"CUSTOM;Gilroy Semibold\"],\n                            withExternalLayout: true,\n                            verticalAlignment: \"center\",\n                            __fromCanvasComponent: true,\n                            __htmlStructure: '<p style=\"--framer-line-height:1.2em; --framer-text-alignment:center;\"><span style=\"--framer-font-family:&quot;Gilroy Semibold&quot;, serif; --framer-font-style:normal; --framer-font-weight:400; --font-selector:Q1VTVE9NO0dpbHJveSBTZW1pYm9sZA==; --framer-text-color:var(--extracted-1w3ko1f); --framer-font-size:15px; --framer-letter-spacing:0px; --framer-text-transform:none; --framer-text-decoration:none;\">{{ text-placeholder }}</span></p>',\n                            htmlFromDesign: '<p style=\"--framer-line-height:1.2em; --framer-text-alignment:center;\"><span style=\"--framer-font-family:&quot;Gilroy Semibold&quot;, serif; --framer-font-style:normal; --framer-font-weight:400; --font-selector:Q1VTVE9NO0dpbHJveSBTZW1pYm9sZA==; --framer-text-color:var(--extracted-1w3ko1f); --framer-font-size:15px; --framer-letter-spacing:0px; --framer-text-transform:none; --framer-text-decoration:none;\">P1</span></p>'\n                          })\n                        })\n                      }), /*#__PURE__*/_jsx(RichText, {\n                        className: \"framer-1xei9su\",\n                        style: {\n                          whiteSpace: \"pre\",\n                          \"--framer-paragraph-spacing\": \"0px\",\n                          \"--extracted-1w3ko1f\": \"rgb(255, 255, 255)\",\n                          \"--extracted-5dqwso\": \"rgb(255, 255, 255)\"\n                        },\n                        name: \"Pricing Page Update\",\n                        fonts: [\"CUSTOM;Gilroy Extrabold\"],\n                        withExternalLayout: true,\n                        verticalAlignment: \"center\",\n                        __fromCanvasComponent: true,\n                        __htmlStructure: '<p style=\"--framer-text-alignment:left;\"><span style=\"--framer-font-family:&quot;Gilroy Extrabold&quot;, serif; --framer-font-style:normal; --framer-font-weight:400; --font-selector:Q1VTVE9NO0dpbHJveSBFeHRyYWJvbGQ=; --framer-text-color:var(--extracted-1w3ko1f); --framer-font-size:30px;\">{{ text-placeholder }}</span></p>',\n                        htmlFromDesign: '<p style=\"--framer-text-alignment:left;\"><span style=\"--framer-font-family:&quot;Gilroy Extrabold&quot;, serif; --framer-font-style:normal; --framer-font-weight:400; --font-selector:Q1VTVE9NO0dpbHJveSBFeHRyYWJvbGQ=; --framer-text-color:var(--extracted-1w3ko1f); --framer-font-size:30px;\">Pricing Page</span></p><p style=\"--framer-text-alignment:left;\"><span style=\"--framer-font-family:&quot;Gilroy Extrabold&quot;, serif; --framer-font-style:normal; --framer-font-weight:400; --font-selector:Q1VTVE9NO0dpbHJveSBFeHRyYWJvbGQ=; --framer-text-color:var(--extracted-5dqwso); --framer-font-size:30px;\">Update</span></p>'\n                      }), /*#__PURE__*/_jsx(Stack, {\n                        className: \"framer-r1ujy\",\n                        name: \"Frame 1107\",\n                        direction: \"vertical\",\n                        distribution: \"start\",\n                        alignment: \"start\",\n                        gap: 10,\n                        __fromCanvasComponent: true,\n                        __contentWrapperStyle: {\n                          width: \"auto\",\n                          height: \"auto\",\n                          padding: \"2px 10px 2px 10px\"\n                        },\n                        \"data-framer-name\": \"Frame 1107\",\n                        children: /*#__PURE__*/_jsx(RichText, {\n                          className: \"framer-7rfu7g\",\n                          style: {\n                            whiteSpace: \"pre\",\n                            \"--framer-paragraph-spacing\": \"0px\"\n                          },\n                          name: \"Front-End\",\n                          fonts: [\"CUSTOM;Gilroy Semibold\"],\n                          withExternalLayout: true,\n                          verticalAlignment: \"center\",\n                          __fromCanvasComponent: true,\n                          __htmlStructure: '<p style=\"--framer-font-size:15px; --framer-text-alignment:center;\"><span style=\"--framer-font-family:&quot;Gilroy Semibold&quot;, serif; --framer-font-style:normal; --framer-font-weight:400; --font-selector:Q1VTVE9NO0dpbHJveSBTZW1pYm9sZA==; --framer-font-size:15px;\">{{ text-placeholder }}</span></p>',\n                          htmlFromDesign: '<p style=\"--framer-font-size:15px; --framer-text-alignment:center;\"><span style=\"--framer-font-family:&quot;Gilroy Semibold&quot;, serif; --framer-font-style:normal; --framer-font-weight:400; --font-selector:Q1VTVE9NO0dpbHJveSBTZW1pYm9sZA==; --framer-font-size:15px;\">Front-End</span></p>'\n                        })\n                      }), /*#__PURE__*/_jsx(motion.div, {\n                        className: \"framer-12gmhy8\",\n                        name: \"Group 2288\",\n                        background: null,\n                        \"data-framer-name\": \"Group 2288\",\n                        children: /*#__PURE__*/_jsx(Text, {\n                          withExternalLayout: true,\n                          verticalAlignment: \"center\",\n                          __fromCanvasComponent: true,\n                          alignment: \"center\",\n                          fonts: [\"GF;Gilroy-800\"],\n                          className: \"framer-qiwr2n\",\n                          name: \"Spec\",\n                          rawHTML: \"<span style='font-size: 0; line-height: 0; tab-size: 4; white-space: inherit; word-wrap: inherit'><span style='font-size: 0'><span style=''>Spec</span><br></span></span>\"\n                        })\n                      }), /*#__PURE__*/_jsxs(motion.div, {\n                        className: \"framer-69pwot\",\n                        name: \"Group 2290\",\n                        background: null,\n                        \"data-framer-name\": \"Group 2290\",\n                        children: [/*#__PURE__*/_jsx(motion.div, {\n                          className: \"framer-pvowp7\",\n                          name: \"Rectangle 65\",\n                          \"data-framer-name\": \"Rectangle 65\"\n                        }), /*#__PURE__*/_jsx(Stack, {\n                          className: \"framer-19ljfg1\",\n                          name: \"Frame 1110\",\n                          direction: \"horizontal\",\n                          distribution: \"center\",\n                          alignment: \"start\",\n                          gap: 10,\n                          __fromCanvasComponent: true,\n                          __contentWrapperStyle: {\n                            width: \"100%\",\n                            height: \"auto\",\n                            padding: \"6px 40px 6px 40px\"\n                          },\n                          \"data-framer-name\": \"Frame 1110\",\n                          children: /*#__PURE__*/_jsx(Text, {\n                            withExternalLayout: true,\n                            verticalAlignment: \"center\",\n                            __fromCanvasComponent: true,\n                            alignment: \"center\",\n                            fonts: [\"CUSTOM;Gilroy Extrabold\"],\n                            className: \"framer-p10vli\",\n                            name: \"Bid\",\n                            rawHTML: \"<span style='font-size: 0; line-height: 0; tab-size: 4; white-space: inherit; word-wrap: inherit'><span style='font-size: 0'><span style=''>Bid</span><br></span></span>\"\n                          })\n                        }), /*#__PURE__*/_jsx(PropertyOverrides, {\n                          breakpoint: baseVariant,\n                          overrides: {\n                            llZCUywb0: {\n                              fonts: [\"CUSTOM;Gilroy Semibold\"],\n                              __htmlStructure: '<p style=\"--framer-text-alignment:center;\"><span style=\"--framer-font-family:&quot;Gilroy Semibold&quot;, serif; --framer-font-style:normal; --framer-font-weight:400; --font-selector:Q1VTVE9NO0dpbHJveSBTZW1pYm9sZA==; --framer-text-color:var(--extracted-1w3ko1f); --framer-font-size:20px;\">{{ text-placeholder }}</span></p>',\n                              htmlFromDesign: '<p style=\"--framer-text-alignment:center;\"><span style=\"--framer-font-family:&quot;Gilroy Semibold&quot;, serif; --framer-font-style:normal; --framer-font-weight:400; --font-selector:Q1VTVE9NO0dpbHJveSBTZW1pYm9sZA==; --framer-text-color:var(--extracted-1w3ko1f); --framer-font-size:20px;\">Enter your bid</span></p>',\n                              preload: []\n                            }\n                          },\n                          children: /*#__PURE__*/_jsx(RichText, {\n                            className: \"framer-17b89s6\",\n                            style: {\n                              whiteSpace: \"pre\",\n                              \"--framer-paragraph-spacing\": \"0px\",\n                              \"--extracted-1w3ko1f\": \"rgb(163, 167, 169)\"\n                            },\n                            name: \"Enter your bid\",\n                            fonts: [\"CUSTOM;Gilroy Semibold\"],\n                            withExternalLayout: true,\n                            verticalAlignment: \"center\",\n                            __fromCanvasComponent: true,\n                            __htmlStructure: '<p style=\"--framer-text-alignment:center;\"><span style=\"--framer-font-family:&quot;Gilroy Semibold&quot;, serif; --framer-font-style:normal; --framer-font-weight:400; --font-selector:Q1VTVE9NO0dpbHJveSBTZW1pYm9sZA==; --framer-text-color:var(--extracted-1w3ko1f); --framer-font-size:20px;\">{{ text-placeholder }}</span></p>',\n                            htmlFromDesign: '<p style=\"--framer-text-alignment:center;\"><span style=\"--framer-font-family:&quot;Gilroy Semibold&quot;, serif; --framer-font-style:normal; --framer-font-weight:400; --font-selector:Q1VTVE9NO0dpbHJveSBTZW1pYm9sZA==; --framer-text-color:var(--extracted-1w3ko1f); --framer-font-size:20px;\">Enter your bid</span></p>'\n                          })\n                        })]\n                      }), /*#__PURE__*/_jsxs(motion.div, {\n                        className: \"framer-1r5rjr5\",\n                        name: \"Group 2291\",\n                        background: null,\n                        \"data-framer-name\": \"Group 2291\",\n                        children: [/*#__PURE__*/_jsx(Text, {\n                          withExternalLayout: true,\n                          verticalAlignment: \"center\",\n                          __fromCanvasComponent: true,\n                          alignment: \"center\",\n                          fonts: [\"CUSTOM;Gilroy Semibold\"],\n                          className: \"framer-p6ey39\",\n                          name: \"\\u23F1 21 Aug, 2021\",\n                          rawHTML: \"<span style='font-size: 0; line-height: 0; tab-size: 4; white-space: inherit; word-wrap: inherit'><span style='font-size: 0'><span style=''>\\u23F1 21 Aug, 2021</span><br></span></span>\"\n                        }), /*#__PURE__*/_jsx(RichText, {\n                          className: \"framer-1anezxj\",\n                          style: {\n                            whiteSpace: \"pre\",\n                            \"--framer-paragraph-spacing\": \"0px\",\n                            \"--extracted-1w3ko1f\": \"rgb(0, 255, 163)\",\n                            \"--extracted-3sq8v0\": \"rgb(14, 208, 244)\",\n                            \"--extracted-c9yw3e\": \"rgb(14, 208, 244)\"\n                          },\n                          name: \"\\u{1F465} 5 Collaborators\",\n                          fonts: [\"GF;Gilroy-600\", \"CUSTOM;Gilroy Semibold\"],\n                          withExternalLayout: true,\n                          verticalAlignment: \"center\",\n                          __fromCanvasComponent: true,\n                          __htmlStructure: '<p style=\"--framer-font-size:15px; --framer-text-alignment:center;\"><span style=\"--framer-font-family:&quot;Gilroy&quot;, serif; --framer-font-style:normal; --framer-font-weight:600; --font-selector:R0Y7R2lscm95LTYwMA==; --framer-text-color:var(--extracted-1w3ko1f); --framer-font-size:15px;\">{{ text-placeholder }}</span></p>',\n                          htmlFromDesign: '<p style=\"--framer-font-size:15px; --framer-text-alignment:center;\"><span style=\"--framer-font-family:&quot;Gilroy&quot;, serif; --framer-font-style:normal; --framer-font-weight:600; --font-selector:R0Y7R2lscm95LTYwMA==; --framer-text-color:var(--extracted-1w3ko1f); --framer-font-size:15px;\">\\u{1F465} </span><span style=\"--framer-font-family:&quot;Gilroy&quot;, serif; --framer-font-style:normal; --framer-font-weight:600; --font-selector:R0Y7R2lscm95LTYwMA==; --framer-text-color:var(--extracted-3sq8v0); --framer-font-size:15px;\">5 </span><span style=\"--framer-font-family:&quot;Gilroy Semibold&quot;, serif; --framer-font-style:normal; --framer-font-weight:400; --font-selector:Q1VTVE9NO0dpbHJveSBTZW1pYm9sZA==; --framer-text-color:var(--extracted-c9yw3e); --framer-font-size:15px;\">Collaborators</span></p>'\n                        })]\n                      })]\n                    }), /*#__PURE__*/_jsxs(MotionDivWithParallaxTransform, {\n                      className: \"framer-6x4tdx\",\n                      name: \"Task Request\",\n                      background: null,\n                      \"data-framer-name\": \"Task Request\",\n                      __framer__speed: 150,\n                      __framer__adjustPosition: true,\n                      __framer__offset: 20,\n                      children: [/*#__PURE__*/_jsx(motion.div, {\n                        className: \"framer-3r3jvv\",\n                        name: \"Rectangle 72\",\n                        \"data-framer-name\": \"Rectangle 72\"\n                      }), /*#__PURE__*/_jsx(Stack, {\n                        className: \"framer-1yvmfai\",\n                        name: \"Frame 1111\",\n                        direction: \"horizontal\",\n                        distribution: \"center\",\n                        alignment: \"start\",\n                        gap: 10,\n                        __fromCanvasComponent: true,\n                        __contentWrapperStyle: {\n                          width: \"100%\",\n                          height: \"auto\",\n                          padding: \"10px 40px 10px 40px\"\n                        },\n                        \"data-framer-name\": \"Frame 1111\",\n                        children: /*#__PURE__*/_jsx(PropertyOverrides, {\n                          breakpoint: baseVariant,\n                          overrides: {\n                            llZCUywb0: {\n                              fonts: [\"CUSTOM;Gilroy Extrabold\"],\n                              __htmlStructure: '<p style=\"--framer-text-alignment:center;\"><span style=\"--framer-font-family:&quot;Gilroy Extrabold&quot;, serif; --framer-font-style:normal; --framer-font-weight:400; --font-selector:Q1VTVE9NO0dpbHJveSBFeHRyYWJvbGQ=; --framer-font-size:20px; --framer-text-transform:capitalize;\">{{ text-placeholder }}</span></p>',\n                              htmlFromDesign: '<p style=\"--framer-text-alignment:center;\"><span style=\"--framer-font-family:&quot;Gilroy Extrabold&quot;, serif; --framer-font-style:normal; --framer-font-weight:400; --font-selector:Q1VTVE9NO0dpbHJveSBFeHRyYWJvbGQ=; --framer-font-size:20px; --framer-text-transform:capitalize;\">Spec</span></p>',\n                              preload: []\n                            }\n                          },\n                          children: /*#__PURE__*/_jsx(RichText, {\n                            className: \"framer-1egiqh7\",\n                            style: {\n                              whiteSpace: \"pre\",\n                              \"--framer-paragraph-spacing\": \"0px\"\n                            },\n                            name: \"Spec\",\n                            fonts: [\"CUSTOM;Gilroy Extrabold\"],\n                            withExternalLayout: true,\n                            verticalAlignment: \"center\",\n                            __fromCanvasComponent: true,\n                            __htmlStructure: '<p style=\"--framer-text-alignment:center;\"><span style=\"--framer-font-family:&quot;Gilroy Extrabold&quot;, serif; --framer-font-style:normal; --framer-font-weight:400; --font-selector:Q1VTVE9NO0dpbHJveSBFeHRyYWJvbGQ=; --framer-font-size:20px; --framer-text-transform:capitalize;\">{{ text-placeholder }}</span></p>',\n                            htmlFromDesign: '<p style=\"--framer-text-alignment:center;\"><span style=\"--framer-font-family:&quot;Gilroy Extrabold&quot;, serif; --framer-font-style:normal; --framer-font-weight:400; --font-selector:Q1VTVE9NO0dpbHJveSBFeHRyYWJvbGQ=; --framer-font-size:20px; --framer-text-transform:capitalize;\">Spec</span></p>'\n                          })\n                        })\n                      }), /*#__PURE__*/_jsx(Stack, {\n                        className: \"framer-8ftc86\",\n                        name: \"Frame 1108\",\n                        direction: \"vertical\",\n                        distribution: \"start\",\n                        alignment: \"start\",\n                        gap: 10,\n                        __fromCanvasComponent: true,\n                        __contentWrapperStyle: {\n                          width: \"auto\",\n                          height: \"auto\",\n                          padding: \"2px 10px 2px 10px\"\n                        },\n                        \"data-framer-name\": \"Frame 1108\",\n                        children: /*#__PURE__*/_jsx(Text, {\n                          withExternalLayout: true,\n                          verticalAlignment: \"center\",\n                          __fromCanvasComponent: true,\n                          alignment: \"center\",\n                          fonts: [\"CUSTOM;Gilroy Semibold\"],\n                          className: \"framer-uopy1r\",\n                          name: \"React\",\n                          rawHTML: \"<span style='font-size: 0; line-height: 0; tab-size: 4; white-space: inherit; word-wrap: inherit'><span style='font-size: 0'><span style=''>React</span><br></span></span>\"\n                        })\n                      }), /*#__PURE__*/_jsx(Stack, {\n                        className: \"framer-13o4ea7\",\n                        name: \"Frame 1109\",\n                        direction: \"vertical\",\n                        distribution: \"start\",\n                        alignment: \"start\",\n                        gap: 10,\n                        __fromCanvasComponent: true,\n                        __contentWrapperStyle: {\n                          width: \"auto\",\n                          height: \"auto\",\n                          padding: \"2px 10px 2px 10px\"\n                        },\n                        \"data-framer-name\": \"Frame 1109\",\n                        children: /*#__PURE__*/_jsx(PropertyOverrides, {\n                          breakpoint: baseVariant,\n                          overrides: {\n                            llZCUywb0: {\n                              fonts: [\"CUSTOM;Gilroy Semibold\"],\n                              __htmlStructure: '<p style=\"--framer-font-size:15px; --framer-text-alignment:center;\"><span style=\"--framer-font-family:&quot;Gilroy Semibold&quot;, serif; --framer-font-style:normal; --framer-font-weight:400; --font-selector:Q1VTVE9NO0dpbHJveSBTZW1pYm9sZA==; --framer-font-size:15px;\">{{ text-placeholder }}</span></p>',\n                              htmlFromDesign: '<p style=\"--framer-font-size:15px; --framer-text-alignment:center;\"><span style=\"--framer-font-family:&quot;Gilroy Semibold&quot;, serif; --framer-font-style:normal; --framer-font-weight:400; --font-selector:Q1VTVE9NO0dpbHJveSBTZW1pYm9sZA==; --framer-font-size:15px;\">P3</span></p>',\n                              preload: []\n                            }\n                          },\n                          children: /*#__PURE__*/_jsx(RichText, {\n                            className: \"framer-ogdhye\",\n                            style: {\n                              whiteSpace: \"pre\",\n                              \"--framer-paragraph-spacing\": \"0px\"\n                            },\n                            name: \"P3\",\n                            fonts: [\"CUSTOM;Gilroy Semibold\"],\n                            withExternalLayout: true,\n                            verticalAlignment: \"center\",\n                            __fromCanvasComponent: true,\n                            __htmlStructure: '<p style=\"--framer-font-size:15px; --framer-text-alignment:center;\"><span style=\"--framer-font-family:&quot;Gilroy Semibold&quot;, serif; --framer-font-style:normal; --framer-font-weight:400; --font-selector:Q1VTVE9NO0dpbHJveSBTZW1pYm9sZA==; --framer-font-size:15px;\">{{ text-placeholder }}</span></p>',\n                            htmlFromDesign: '<p style=\"--framer-font-size:15px; --framer-text-alignment:center;\"><span style=\"--framer-font-family:&quot;Gilroy Semibold&quot;, serif; --framer-font-style:normal; --framer-font-weight:400; --font-selector:Q1VTVE9NO0dpbHJveSBTZW1pYm9sZA==; --framer-font-size:15px;\">P3</span></p>'\n                          })\n                        })\n                      }), /*#__PURE__*/_jsx(Text, {\n                        withExternalLayout: true,\n                        verticalAlignment: \"center\",\n                        __fromCanvasComponent: true,\n                        alignment: \"left\",\n                        fonts: [\"GF;Gilroy-700\"],\n                        className: \"framer-ta02ts\",\n                        name: \"Legal Review\",\n                        rawHTML: \"<span style='font-size: 0; line-height: 0; tab-size: 4; white-space: inherit; word-wrap: inherit'><span style='font-size: 0'><span style=''>Legal</span><br></span><span style='font-size: 0'><span style=''>Review</span><br></span></span>\"\n                      }), /*#__PURE__*/_jsx(Stack, {\n                        className: \"framer-1oam7q5\",\n                        name: \"Frame 1107\",\n                        direction: \"vertical\",\n                        distribution: \"start\",\n                        alignment: \"start\",\n                        gap: 10,\n                        __fromCanvasComponent: true,\n                        __contentWrapperStyle: {\n                          width: \"auto\",\n                          height: \"auto\",\n                          padding: \"2px 10px 2px 10px\"\n                        },\n                        \"data-framer-name\": \"Frame 1107\",\n                        children: /*#__PURE__*/_jsx(Text, {\n                          withExternalLayout: true,\n                          verticalAlignment: \"center\",\n                          __fromCanvasComponent: true,\n                          alignment: \"center\",\n                          fonts: [\"GF;Gilroy-600\"],\n                          className: \"framer-1c73xb6\",\n                          name: \"Front-End\",\n                          rawHTML: \"<span style='font-size: 0; line-height: 0; tab-size: 4; white-space: inherit; word-wrap: inherit'><span style='font-size: 0'><span style=''>Front-End</span><br></span></span>\"\n                        })\n                      }), /*#__PURE__*/_jsx(motion.div, {\n                        className: \"framer-1kmakak\",\n                        name: \"Group 2288\",\n                        background: null,\n                        \"data-framer-name\": \"Group 2288\"\n                      }), /*#__PURE__*/_jsxs(motion.div, {\n                        className: \"framer-1hscfnp\",\n                        name: \"Group 2290\",\n                        background: null,\n                        \"data-framer-name\": \"Group 2290\",\n                        children: [/*#__PURE__*/_jsx(motion.div, {\n                          className: \"framer-v3rorp\",\n                          name: \"Rectangle 65\",\n                          \"data-framer-name\": \"Rectangle 65\"\n                        }), /*#__PURE__*/_jsx(Stack, {\n                          className: \"framer-ynd1nb\",\n                          name: \"Frame 1110\",\n                          direction: \"horizontal\",\n                          distribution: \"center\",\n                          alignment: \"start\",\n                          gap: 10,\n                          __fromCanvasComponent: true,\n                          __contentWrapperStyle: {\n                            width: \"100%\",\n                            height: \"auto\",\n                            padding: \"6px 40px 6px 40px\"\n                          },\n                          \"data-framer-name\": \"Frame 1110\",\n                          children: /*#__PURE__*/_jsx(PropertyOverrides, {\n                            breakpoint: baseVariant,\n                            overrides: {\n                              llZCUywb0: {\n                                fonts: [\"CUSTOM;Gilroy Extrabold\"],\n                                __htmlStructure: '<p style=\"--framer-text-alignment:center;\"><span style=\"--framer-font-family:&quot;Gilroy Extrabold&quot;, serif; --framer-font-style:normal; --framer-font-weight:400; --font-selector:Q1VTVE9NO0dpbHJveSBFeHRyYWJvbGQ=; --framer-font-size:20px; --framer-text-transform:capitalize;\">{{ text-placeholder }}</span></p>',\n                                htmlFromDesign: '<p style=\"--framer-text-alignment:center;\"><span style=\"--framer-font-family:&quot;Gilroy Extrabold&quot;, serif; --framer-font-style:normal; --framer-font-weight:400; --font-selector:Q1VTVE9NO0dpbHJveSBFeHRyYWJvbGQ=; --framer-font-size:20px; --framer-text-transform:capitalize;\">Bid</span></p>',\n                                preload: []\n                              }\n                            },\n                            children: /*#__PURE__*/_jsx(RichText, {\n                              className: \"framer-1hl6k0k\",\n                              style: {\n                                whiteSpace: \"pre\",\n                                \"--framer-paragraph-spacing\": \"0px\"\n                              },\n                              name: \"Bid\",\n                              fonts: [\"CUSTOM;Gilroy Extrabold\"],\n                              withExternalLayout: true,\n                              verticalAlignment: \"center\",\n                              __fromCanvasComponent: true,\n                              __htmlStructure: '<p style=\"--framer-text-alignment:center;\"><span style=\"--framer-font-family:&quot;Gilroy Extrabold&quot;, serif; --framer-font-style:normal; --framer-font-weight:400; --font-selector:Q1VTVE9NO0dpbHJveSBFeHRyYWJvbGQ=; --framer-font-size:20px; --framer-text-transform:capitalize;\">{{ text-placeholder }}</span></p>',\n                              htmlFromDesign: '<p style=\"--framer-text-alignment:center;\"><span style=\"--framer-font-family:&quot;Gilroy Extrabold&quot;, serif; --framer-font-style:normal; --framer-font-weight:400; --font-selector:Q1VTVE9NO0dpbHJveSBFeHRyYWJvbGQ=; --framer-font-size:20px; --framer-text-transform:capitalize;\">Bid</span></p>'\n                            })\n                          })\n                        }), /*#__PURE__*/_jsx(PropertyOverrides, {\n                          breakpoint: baseVariant,\n                          overrides: {\n                            llZCUywb0: {\n                              fonts: [\"CUSTOM;Gilroy Semibold\"],\n                              __htmlStructure: '<p style=\"--framer-text-alignment:center;\"><span style=\"--framer-font-family:&quot;Gilroy Semibold&quot;, serif; --framer-font-style:normal; --framer-font-weight:400; --font-selector:Q1VTVE9NO0dpbHJveSBTZW1pYm9sZA==; --framer-text-color:var(--extracted-1w3ko1f); --framer-font-size:20px;\">{{ text-placeholder }}</span></p>',\n                              htmlFromDesign: '<p style=\"--framer-text-alignment:center;\"><span style=\"--framer-font-family:&quot;Gilroy Semibold&quot;, serif; --framer-font-style:normal; --framer-font-weight:400; --font-selector:Q1VTVE9NO0dpbHJveSBTZW1pYm9sZA==; --framer-text-color:var(--extracted-1w3ko1f); --framer-font-size:20px;\">Enter your bid</span></p>',\n                              preload: []\n                            }\n                          },\n                          children: /*#__PURE__*/_jsx(RichText, {\n                            className: \"framer-k4qm0g\",\n                            style: {\n                              whiteSpace: \"pre\",\n                              \"--framer-paragraph-spacing\": \"0px\",\n                              \"--extracted-1w3ko1f\": \"rgb(163, 167, 169)\"\n                            },\n                            name: \"Enter your bid\",\n                            fonts: [\"CUSTOM;Gilroy Semibold\"],\n                            withExternalLayout: true,\n                            verticalAlignment: \"center\",\n                            __fromCanvasComponent: true,\n                            __htmlStructure: '<p style=\"--framer-text-alignment:center;\"><span style=\"--framer-font-family:&quot;Gilroy Semibold&quot;, serif; --framer-font-style:normal; --framer-font-weight:400; --font-selector:Q1VTVE9NO0dpbHJveSBTZW1pYm9sZA==; --framer-text-color:var(--extracted-1w3ko1f); --framer-font-size:20px;\">{{ text-placeholder }}</span></p>',\n                            htmlFromDesign: '<p style=\"--framer-text-alignment:center;\"><span style=\"--framer-font-family:&quot;Gilroy Semibold&quot;, serif; --framer-font-style:normal; --framer-font-weight:400; --font-selector:Q1VTVE9NO0dpbHJveSBTZW1pYm9sZA==; --framer-text-color:var(--extracted-1w3ko1f); --framer-font-size:20px;\">Enter your bid</span></p>'\n                          })\n                        })]\n                      }), /*#__PURE__*/_jsxs(motion.div, {\n                        className: \"framer-1g22s7p\",\n                        name: \"Group 2291\",\n                        background: null,\n                        \"data-framer-name\": \"Group 2291\",\n                        children: [/*#__PURE__*/_jsx(PropertyOverrides, {\n                          breakpoint: baseVariant,\n                          overrides: {\n                            llZCUywb0: {\n                              fonts: [\"CUSTOM;Gilroy Semibold\"],\n                              __htmlStructure: '<p style=\"--framer-font-size:15px; --framer-text-alignment:left;\"><span style=\"--framer-font-family:&quot;Gilroy Semibold&quot;, serif; --framer-font-style:normal; --framer-font-weight:400; --font-selector:Q1VTVE9NO0dpbHJveSBTZW1pYm9sZA==; --framer-text-color:var(--extracted-1w3ko1f); --framer-font-size:15px;\">{{ text-placeholder }}</span></p>',\n                              htmlFromDesign: '<p style=\"--framer-font-size:15px; --framer-text-alignment:left;\"><span style=\"--framer-font-family:&quot;Gilroy Semibold&quot;, serif; --framer-font-style:normal; --framer-font-weight:400; --font-selector:Q1VTVE9NO0dpbHJveSBTZW1pYm9sZA==; --framer-text-color:var(--extracted-1w3ko1f); --framer-font-size:15px;\">\\u23F1 17 Sep, 2021</span></p>',\n                              preload: []\n                            }\n                          },\n                          children: /*#__PURE__*/_jsx(RichText, {\n                            className: \"framer-10hflij\",\n                            style: {\n                              whiteSpace: \"pre\",\n                              \"--framer-paragraph-spacing\": \"0px\",\n                              \"--extracted-1w3ko1f\": \"rgb(255, 116, 119)\"\n                            },\n                            name: \"\\u23F1 17 Sep, 2021\",\n                            fonts: [\"CUSTOM;Gilroy Semibold\"],\n                            withExternalLayout: true,\n                            verticalAlignment: \"center\",\n                            __fromCanvasComponent: true,\n                            __htmlStructure: '<p style=\"--framer-font-size:15px; --framer-text-alignment:left;\"><span style=\"--framer-font-family:&quot;Gilroy Semibold&quot;, serif; --framer-font-style:normal; --framer-font-weight:400; --font-selector:Q1VTVE9NO0dpbHJveSBTZW1pYm9sZA==; --framer-text-color:var(--extracted-1w3ko1f); --framer-font-size:15px;\">{{ text-placeholder }}</span></p>',\n                            htmlFromDesign: '<p style=\"--framer-font-size:15px; --framer-text-alignment:left;\"><span style=\"--framer-font-family:&quot;Gilroy Semibold&quot;, serif; --framer-font-style:normal; --framer-font-weight:400; --font-selector:Q1VTVE9NO0dpbHJveSBTZW1pYm9sZA==; --framer-text-color:var(--extracted-1w3ko1f); --framer-font-size:15px;\">\\u23F1 17 Sep, 2021</span></p>'\n                          })\n                        }), /*#__PURE__*/_jsx(PropertyOverrides, {\n                          breakpoint: baseVariant,\n                          overrides: {\n                            llZCUywb0: {\n                              fonts: [\"CUSTOM;Gilroy Semibold\"],\n                              __htmlStructure: '<p style=\"--framer-font-size:15px; --framer-text-alignment:left;\"><span style=\"--framer-font-family:&quot;Gilroy Semibold&quot;, serif; --framer-font-style:normal; --framer-font-weight:400; --font-selector:Q1VTVE9NO0dpbHJveSBTZW1pYm9sZA==; --framer-text-color:var(--extracted-1w3ko1f); --framer-font-size:15px;\">{{ text-placeholder }}</span></p>',\n                              htmlFromDesign: '<p style=\"--framer-font-size:15px; --framer-text-alignment:left;\"><span style=\"--framer-font-family:&quot;Gilroy Semibold&quot;, serif; --framer-font-style:normal; --framer-font-weight:400; --font-selector:Q1VTVE9NO0dpbHJveSBTZW1pYm9sZA==; --framer-text-color:var(--extracted-1w3ko1f); --framer-font-size:15px;\">\\u{1F465} </span><span style=\"--framer-font-family:&quot;Gilroy Semibold&quot;, serif; --framer-font-style:normal; --framer-font-weight:400; --font-selector:Q1VTVE9NO0dpbHJveSBTZW1pYm9sZA==; --framer-text-color:var(--extracted-3sq8v0); --framer-font-size:15px;\">5 Collaborators</span></p>',\n                              preload: []\n                            }\n                          },\n                          children: /*#__PURE__*/_jsx(RichText, {\n                            className: \"framer-15xbf57\",\n                            style: {\n                              whiteSpace: \"pre\",\n                              \"--framer-paragraph-spacing\": \"0px\",\n                              \"--extracted-1w3ko1f\": \"rgb(0, 255, 163)\",\n                              \"--extracted-3sq8v0\": \"rgb(14, 208, 244)\"\n                            },\n                            name: \"\\u{1F465} 5 Collaborators\",\n                            fonts: [\"CUSTOM;Gilroy Semibold\"],\n                            withExternalLayout: true,\n                            verticalAlignment: \"center\",\n                            __fromCanvasComponent: true,\n                            __htmlStructure: '<p style=\"--framer-font-size:15px; --framer-text-alignment:left;\"><span style=\"--framer-font-family:&quot;Gilroy Semibold&quot;, serif; --framer-font-style:normal; --framer-font-weight:400; --font-selector:Q1VTVE9NO0dpbHJveSBTZW1pYm9sZA==; --framer-text-color:var(--extracted-1w3ko1f); --framer-font-size:15px;\">{{ text-placeholder }}</span></p>',\n                            htmlFromDesign: '<p style=\"--framer-font-size:15px; --framer-text-alignment:left;\"><span style=\"--framer-font-family:&quot;Gilroy Semibold&quot;, serif; --framer-font-style:normal; --framer-font-weight:400; --font-selector:Q1VTVE9NO0dpbHJveSBTZW1pYm9sZA==; --framer-text-color:var(--extracted-1w3ko1f); --framer-font-size:15px;\">\\u{1F465} </span><span style=\"--framer-font-family:&quot;Gilroy Semibold&quot;, serif; --framer-font-style:normal; --framer-font-weight:400; --font-selector:Q1VTVE9NO0dpbHJveSBTZW1pYm9sZA==; --framer-text-color:var(--extracted-3sq8v0); --framer-font-size:15px;\">5 Collaborators</span></p>'\n                          })\n                        })]\n                      })]\n                    }), /*#__PURE__*/_jsxs(MotionDivWithParallaxTransform, {\n                      className: \"framer-bxkykl\",\n                      name: \"Task Request\",\n                      background: null,\n                      \"data-framer-name\": \"Task Request\",\n                      __framer__speed: 150,\n                      __framer__adjustPosition: true,\n                      __framer__offset: 20,\n                      children: [/*#__PURE__*/_jsx(motion.div, {\n                        className: \"framer-mwssyt\",\n                        name: \"Rectangle 72\",\n                        \"data-framer-name\": \"Rectangle 72\"\n                      }), /*#__PURE__*/_jsx(Stack, {\n                        className: \"framer-v9c4pd\",\n                        name: \"Frame 1111\",\n                        direction: \"horizontal\",\n                        distribution: \"center\",\n                        alignment: \"start\",\n                        gap: 10,\n                        __fromCanvasComponent: true,\n                        __contentWrapperStyle: {\n                          width: \"100%\",\n                          height: \"auto\",\n                          padding: \"10px 40px 10px 40px\"\n                        },\n                        \"data-framer-name\": \"Frame 1111\",\n                        children: /*#__PURE__*/_jsx(Text, {\n                          withExternalLayout: true,\n                          verticalAlignment: \"center\",\n                          __fromCanvasComponent: true,\n                          alignment: \"center\",\n                          fonts: [\"CUSTOM;Gilroy Extrabold\"],\n                          className: \"framer-nu1tfi\",\n                          name: \"Spec\",\n                          rawHTML: \"<span style='font-size: 0; line-height: 0; tab-size: 4; white-space: inherit; word-wrap: inherit'><span style='font-size: 0'><span style=''>Spec</span><br></span></span>\"\n                        })\n                      }), /*#__PURE__*/_jsx(Stack, {\n                        className: \"framer-14ro8xe\",\n                        name: \"Frame 1108\",\n                        direction: \"vertical\",\n                        distribution: \"start\",\n                        alignment: \"start\",\n                        gap: 10,\n                        __fromCanvasComponent: true,\n                        __contentWrapperStyle: {\n                          width: \"auto\",\n                          height: \"auto\",\n                          padding: \"2px 10px 2px 10px\"\n                        },\n                        \"data-framer-name\": \"Frame 1108\",\n                        children: /*#__PURE__*/_jsx(PropertyOverrides, {\n                          breakpoint: baseVariant,\n                          overrides: {\n                            llZCUywb0: {\n                              fonts: [\"CUSTOM;Gilroy Semibold\"],\n                              __htmlStructure: '<p style=\"--framer-font-size:15px; --framer-text-alignment:center;\"><span style=\"--framer-font-family:&quot;Gilroy Semibold&quot;, serif; --framer-font-style:normal; --framer-font-weight:400; --font-selector:Q1VTVE9NO0dpbHJveSBTZW1pYm9sZA==; --framer-font-size:15px;\">{{ text-placeholder }}</span></p>',\n                              htmlFromDesign: '<p style=\"--framer-font-size:15px; --framer-text-alignment:center;\"><span style=\"--framer-font-family:&quot;Gilroy Semibold&quot;, serif; --framer-font-style:normal; --framer-font-weight:400; --font-selector:Q1VTVE9NO0dpbHJveSBTZW1pYm9sZA==; --framer-font-size:15px;\">Node.js</span></p>',\n                              preload: []\n                            }\n                          },\n                          children: /*#__PURE__*/_jsx(RichText, {\n                            className: \"framer-1x4gbql\",\n                            style: {\n                              whiteSpace: \"pre\",\n                              \"--framer-paragraph-spacing\": \"0px\"\n                            },\n                            name: \"Node.js\",\n                            fonts: [\"CUSTOM;Gilroy Semibold\"],\n                            withExternalLayout: true,\n                            verticalAlignment: \"center\",\n                            __fromCanvasComponent: true,\n                            __htmlStructure: '<p style=\"--framer-font-size:15px; --framer-text-alignment:center;\"><span style=\"--framer-font-family:&quot;Gilroy Semibold&quot;, serif; --framer-font-style:normal; --framer-font-weight:400; --font-selector:Q1VTVE9NO0dpbHJveSBTZW1pYm9sZA==; --framer-font-size:15px;\">{{ text-placeholder }}</span></p>',\n                            htmlFromDesign: '<p style=\"--framer-font-size:15px; --framer-text-alignment:center;\"><span style=\"--framer-font-family:&quot;Gilroy Semibold&quot;, serif; --framer-font-style:normal; --framer-font-weight:400; --font-selector:Q1VTVE9NO0dpbHJveSBTZW1pYm9sZA==; --framer-font-size:15px;\">Node.js</span></p>'\n                          })\n                        })\n                      }), /*#__PURE__*/_jsx(Stack, {\n                        className: \"framer-1ecfqha\",\n                        name: \"Frame 1109\",\n                        direction: \"vertical\",\n                        distribution: \"start\",\n                        alignment: \"start\",\n                        gap: 10,\n                        __fromCanvasComponent: true,\n                        __contentWrapperStyle: {\n                          width: \"auto\",\n                          height: \"auto\",\n                          padding: \"2px 10px 2px 10px\"\n                        },\n                        \"data-framer-name\": \"Frame 1109\",\n                        children: /*#__PURE__*/_jsx(PropertyOverrides, {\n                          breakpoint: baseVariant,\n                          overrides: {\n                            llZCUywb0: {\n                              fonts: [\"CUSTOM;Gilroy Semibold\"],\n                              __htmlStructure: '<p style=\"--framer-font-size:15px; --framer-text-alignment:center;\"><span style=\"--framer-font-family:&quot;Gilroy Semibold&quot;, serif; --framer-font-style:normal; --framer-font-weight:400; --font-selector:Q1VTVE9NO0dpbHJveSBTZW1pYm9sZA==; --framer-font-size:15px;\">{{ text-placeholder }}</span></p>',\n                              htmlFromDesign: '<p style=\"--framer-font-size:15px; --framer-text-alignment:center;\"><span style=\"--framer-font-family:&quot;Gilroy Semibold&quot;, serif; --framer-font-style:normal; --framer-font-weight:400; --font-selector:Q1VTVE9NO0dpbHJveSBTZW1pYm9sZA==; --framer-font-size:15px;\">P2</span></p>',\n                              preload: []\n                            }\n                          },\n                          children: /*#__PURE__*/_jsx(RichText, {\n                            className: \"framer-1fhcno2\",\n                            style: {\n                              whiteSpace: \"pre\",\n                              \"--framer-paragraph-spacing\": \"0px\"\n                            },\n                            name: \"P2\",\n                            fonts: [\"CUSTOM;Gilroy Semibold\"],\n                            withExternalLayout: true,\n                            verticalAlignment: \"center\",\n                            __fromCanvasComponent: true,\n                            __htmlStructure: '<p style=\"--framer-font-size:15px; --framer-text-alignment:center;\"><span style=\"--framer-font-family:&quot;Gilroy Semibold&quot;, serif; --framer-font-style:normal; --framer-font-weight:400; --font-selector:Q1VTVE9NO0dpbHJveSBTZW1pYm9sZA==; --framer-font-size:15px;\">{{ text-placeholder }}</span></p>',\n                            htmlFromDesign: '<p style=\"--framer-font-size:15px; --framer-text-alignment:center;\"><span style=\"--framer-font-family:&quot;Gilroy Semibold&quot;, serif; --framer-font-style:normal; --framer-font-weight:400; --font-selector:Q1VTVE9NO0dpbHJveSBTZW1pYm9sZA==; --framer-font-size:15px;\">P2</span></p>'\n                          })\n                        })\n                      }), /*#__PURE__*/_jsx(PropertyOverrides, {\n                        breakpoint: baseVariant,\n                        overrides: {\n                          llZCUywb0: {\n                            fonts: [\"CUSTOM;Gilroy Extrabold\"],\n                            __htmlStructure: '<p style=\"--framer-text-alignment:left;\"><span style=\"--framer-font-family:&quot;Gilroy Extrabold&quot;, serif; --framer-font-style:normal; --framer-font-weight:400; --font-selector:Q1VTVE9NO0dpbHJveSBFeHRyYWJvbGQ=; --framer-text-color:var(--extracted-1w3ko1f); --framer-font-size:30px;\">{{ text-placeholder }}</span></p>',\n                            htmlFromDesign: '<p style=\"--framer-text-alignment:left;\"><span style=\"--framer-font-family:&quot;Gilroy Extrabold&quot;, serif; --framer-font-style:normal; --framer-font-weight:400; --font-selector:Q1VTVE9NO0dpbHJveSBFeHRyYWJvbGQ=; --framer-text-color:var(--extracted-1w3ko1f); --framer-font-size:30px;\">User Comms</span></p><p style=\"--framer-text-alignment:left;\"><span style=\"--framer-font-family:&quot;Gilroy Extrabold&quot;, serif; --framer-font-style:normal; --framer-font-weight:400; --font-selector:Q1VTVE9NO0dpbHJveSBFeHRyYWJvbGQ=; --framer-text-color:var(--extracted-5dqwso); --framer-font-size:30px;\">Integratons</span></p>',\n                            preload: []\n                          }\n                        },\n                        children: /*#__PURE__*/_jsx(RichText, {\n                          className: \"framer-klkb22\",\n                          style: {\n                            whiteSpace: \"pre\",\n                            \"--framer-paragraph-spacing\": \"0px\",\n                            \"--extracted-1w3ko1f\": \"rgb(255, 255, 255)\",\n                            \"--extracted-5dqwso\": \"rgb(255, 255, 255)\"\n                          },\n                          name: \"User Comms Integratons\",\n                          fonts: [\"CUSTOM;Gilroy Extrabold\"],\n                          withExternalLayout: true,\n                          verticalAlignment: \"center\",\n                          __fromCanvasComponent: true,\n                          __htmlStructure: '<p style=\"--framer-text-alignment:left;\"><span style=\"--framer-font-family:&quot;Gilroy Extrabold&quot;, serif; --framer-font-style:normal; --framer-font-weight:400; --font-selector:Q1VTVE9NO0dpbHJveSBFeHRyYWJvbGQ=; --framer-text-color:var(--extracted-1w3ko1f); --framer-font-size:30px;\">{{ text-placeholder }}</span></p>',\n                          htmlFromDesign: '<p style=\"--framer-text-alignment:left;\"><span style=\"--framer-font-family:&quot;Gilroy Extrabold&quot;, serif; --framer-font-style:normal; --framer-font-weight:400; --font-selector:Q1VTVE9NO0dpbHJveSBFeHRyYWJvbGQ=; --framer-text-color:var(--extracted-1w3ko1f); --framer-font-size:30px;\">User Comms</span></p><p style=\"--framer-text-alignment:left;\"><span style=\"--framer-font-family:&quot;Gilroy Extrabold&quot;, serif; --framer-font-style:normal; --framer-font-weight:400; --font-selector:Q1VTVE9NO0dpbHJveSBFeHRyYWJvbGQ=; --framer-text-color:var(--extracted-5dqwso); --framer-font-size:30px;\">Integratons</span></p>'\n                        })\n                      }), /*#__PURE__*/_jsx(Stack, {\n                        className: \"framer-gxjm2n\",\n                        name: \"Frame 1107\",\n                        direction: \"vertical\",\n                        distribution: \"start\",\n                        alignment: \"start\",\n                        gap: 10,\n                        __fromCanvasComponent: true,\n                        __contentWrapperStyle: {\n                          width: \"auto\",\n                          height: \"auto\",\n                          padding: \"2px 10px 2px 10px\"\n                        },\n                        \"data-framer-name\": \"Frame 1107\",\n                        children: /*#__PURE__*/_jsx(PropertyOverrides, {\n                          breakpoint: baseVariant,\n                          overrides: {\n                            llZCUywb0: {\n                              fonts: [\"CUSTOM;Gilroy Semibold\"],\n                              __htmlStructure: '<p style=\"--framer-font-size:15px; --framer-text-alignment:center;\"><span style=\"--framer-font-family:&quot;Gilroy Semibold&quot;, serif; --framer-font-style:normal; --framer-font-weight:400; --font-selector:Q1VTVE9NO0dpbHJveSBTZW1pYm9sZA==; --framer-font-size:15px;\">{{ text-placeholder }}</span></p>',\n                              htmlFromDesign: '<p style=\"--framer-font-size:15px; --framer-text-alignment:center;\"><span style=\"--framer-font-family:&quot;Gilroy Semibold&quot;, serif; --framer-font-style:normal; --framer-font-weight:400; --font-selector:Q1VTVE9NO0dpbHJveSBTZW1pYm9sZA==; --framer-font-size:15px;\">Back-End</span></p>',\n                              preload: []\n                            }\n                          },\n                          children: /*#__PURE__*/_jsx(RichText, {\n                            className: \"framer-nmelf\",\n                            style: {\n                              whiteSpace: \"pre\",\n                              \"--framer-paragraph-spacing\": \"0px\"\n                            },\n                            name: \"Back-End\",\n                            fonts: [\"CUSTOM;Gilroy Semibold\"],\n                            withExternalLayout: true,\n                            verticalAlignment: \"center\",\n                            __fromCanvasComponent: true,\n                            __htmlStructure: '<p style=\"--framer-font-size:15px; --framer-text-alignment:center;\"><span style=\"--framer-font-family:&quot;Gilroy Semibold&quot;, serif; --framer-font-style:normal; --framer-font-weight:400; --font-selector:Q1VTVE9NO0dpbHJveSBTZW1pYm9sZA==; --framer-font-size:15px;\">{{ text-placeholder }}</span></p>',\n                            htmlFromDesign: '<p style=\"--framer-font-size:15px; --framer-text-alignment:center;\"><span style=\"--framer-font-family:&quot;Gilroy Semibold&quot;, serif; --framer-font-style:normal; --framer-font-weight:400; --font-selector:Q1VTVE9NO0dpbHJveSBTZW1pYm9sZA==; --framer-font-size:15px;\">Back-End</span></p>'\n                          })\n                        })\n                      }), /*#__PURE__*/_jsxs(motion.div, {\n                        className: \"framer-fh732x\",\n                        name: \"Group 2290\",\n                        background: null,\n                        \"data-framer-name\": \"Group 2290\",\n                        children: [/*#__PURE__*/_jsx(motion.div, {\n                          className: \"framer-y628o2\",\n                          name: \"Rectangle 65\",\n                          \"data-framer-name\": \"Rectangle 65\"\n                        }), /*#__PURE__*/_jsx(Stack, {\n                          className: \"framer-ntl0h8\",\n                          name: \"Frame 1110\",\n                          direction: \"horizontal\",\n                          distribution: \"center\",\n                          alignment: \"start\",\n                          gap: 10,\n                          __fromCanvasComponent: true,\n                          __contentWrapperStyle: {\n                            width: \"100%\",\n                            height: \"auto\",\n                            padding: \"6px 40px 6px 40px\"\n                          },\n                          \"data-framer-name\": \"Frame 1110\",\n                          children: /*#__PURE__*/_jsx(Text, {\n                            withExternalLayout: true,\n                            verticalAlignment: \"center\",\n                            __fromCanvasComponent: true,\n                            alignment: \"center\",\n                            fonts: [\"CUSTOM;Gilroy Extrabold\"],\n                            className: \"framer-tgbtny\",\n                            name: \"Bid\",\n                            rawHTML: \"<span style='font-size: 0; line-height: 0; tab-size: 4; white-space: inherit; word-wrap: inherit'><span style='font-size: 0'><span style=''>Bid</span><br></span></span>\"\n                          })\n                        }), /*#__PURE__*/_jsx(PropertyOverrides, {\n                          breakpoint: baseVariant,\n                          overrides: {\n                            llZCUywb0: {\n                              fonts: [\"CUSTOM;Gilroy Semibold\"],\n                              __htmlStructure: '<p style=\"--framer-text-alignment:center;\"><span style=\"--framer-font-family:&quot;Gilroy Semibold&quot;, serif; --framer-font-style:normal; --framer-font-weight:400; --font-selector:Q1VTVE9NO0dpbHJveSBTZW1pYm9sZA==; --framer-text-color:var(--extracted-1w3ko1f); --framer-font-size:20px;\">{{ text-placeholder }}</span></p>',\n                              htmlFromDesign: '<p style=\"--framer-text-alignment:center;\"><span style=\"--framer-font-family:&quot;Gilroy Semibold&quot;, serif; --framer-font-style:normal; --framer-font-weight:400; --font-selector:Q1VTVE9NO0dpbHJveSBTZW1pYm9sZA==; --framer-text-color:var(--extracted-1w3ko1f); --framer-font-size:20px;\">Enter your bid</span></p>',\n                              preload: []\n                            }\n                          },\n                          children: /*#__PURE__*/_jsx(RichText, {\n                            className: \"framer-1bsz8zf\",\n                            style: {\n                              whiteSpace: \"pre\",\n                              \"--framer-paragraph-spacing\": \"0px\",\n                              \"--extracted-1w3ko1f\": \"rgb(163, 167, 169)\"\n                            },\n                            name: \"Enter your bid\",\n                            fonts: [\"CUSTOM;Gilroy Semibold\"],\n                            withExternalLayout: true,\n                            verticalAlignment: \"center\",\n                            __fromCanvasComponent: true,\n                            __htmlStructure: '<p style=\"--framer-text-alignment:center;\"><span style=\"--framer-font-family:&quot;Gilroy Semibold&quot;, serif; --framer-font-style:normal; --framer-font-weight:400; --font-selector:Q1VTVE9NO0dpbHJveSBTZW1pYm9sZA==; --framer-text-color:var(--extracted-1w3ko1f); --framer-font-size:20px;\">{{ text-placeholder }}</span></p>',\n                            htmlFromDesign: '<p style=\"--framer-text-alignment:center;\"><span style=\"--framer-font-family:&quot;Gilroy Semibold&quot;, serif; --framer-font-style:normal; --framer-font-weight:400; --font-selector:Q1VTVE9NO0dpbHJveSBTZW1pYm9sZA==; --framer-text-color:var(--extracted-1w3ko1f); --framer-font-size:20px;\">Enter your bid</span></p>'\n                          })\n                        })]\n                      }), /*#__PURE__*/_jsxs(motion.div, {\n                        className: \"framer-qqzeex\",\n                        name: \"Group 2291\",\n                        background: null,\n                        \"data-framer-name\": \"Group 2291\",\n                        children: [/*#__PURE__*/_jsx(PropertyOverrides, {\n                          breakpoint: baseVariant,\n                          overrides: {\n                            llZCUywb0: {\n                              fonts: [\"CUSTOM;Gilroy Semibold\"],\n                              __htmlStructure: '<p style=\"--framer-font-size:15px; --framer-text-alignment:center;\"><span style=\"--framer-font-family:&quot;Gilroy Semibold&quot;, serif; --framer-font-style:normal; --framer-font-weight:400; --font-selector:Q1VTVE9NO0dpbHJveSBTZW1pYm9sZA==; --framer-text-color:var(--extracted-1w3ko1f); --framer-font-size:15px;\">{{ text-placeholder }}</span></p>',\n                              htmlFromDesign: '<p style=\"--framer-font-size:15px; --framer-text-alignment:center;\"><span style=\"--framer-font-family:&quot;Gilroy Semibold&quot;, serif; --framer-font-style:normal; --framer-font-weight:400; --font-selector:Q1VTVE9NO0dpbHJveSBTZW1pYm9sZA==; --framer-text-color:var(--extracted-1w3ko1f); --framer-font-size:15px;\">\\u23F1 21 Aug, 2021</span></p>',\n                              preload: []\n                            }\n                          },\n                          children: /*#__PURE__*/_jsx(RichText, {\n                            className: \"framer-10wnaan\",\n                            style: {\n                              whiteSpace: \"pre\",\n                              \"--framer-paragraph-spacing\": \"0px\",\n                              \"--extracted-1w3ko1f\": \"rgb(255, 116, 119)\"\n                            },\n                            name: \"\\u23F1 21 Aug, 2021\",\n                            fonts: [\"CUSTOM;Gilroy Semibold\"],\n                            withExternalLayout: true,\n                            verticalAlignment: \"center\",\n                            __fromCanvasComponent: true,\n                            __htmlStructure: '<p style=\"--framer-font-size:15px; --framer-text-alignment:center;\"><span style=\"--framer-font-family:&quot;Gilroy Semibold&quot;, serif; --framer-font-style:normal; --framer-font-weight:400; --font-selector:Q1VTVE9NO0dpbHJveSBTZW1pYm9sZA==; --framer-text-color:var(--extracted-1w3ko1f); --framer-font-size:15px;\">{{ text-placeholder }}</span></p>',\n                            htmlFromDesign: '<p style=\"--framer-font-size:15px; --framer-text-alignment:center;\"><span style=\"--framer-font-family:&quot;Gilroy Semibold&quot;, serif; --framer-font-style:normal; --framer-font-weight:400; --font-selector:Q1VTVE9NO0dpbHJveSBTZW1pYm9sZA==; --framer-text-color:var(--extracted-1w3ko1f); --framer-font-size:15px;\">\\u23F1 21 Aug, 2021</span></p>'\n                          })\n                        }), /*#__PURE__*/_jsx(PropertyOverrides, {\n                          breakpoint: baseVariant,\n                          overrides: {\n                            llZCUywb0: {\n                              fonts: [\"CUSTOM;Gilroy Semibold\"],\n                              __htmlStructure: '<p style=\"--framer-font-size:15px; --framer-text-alignment:center;\"><span style=\"--framer-font-family:&quot;Gilroy Semibold&quot;, serif; --framer-font-style:normal; --framer-font-weight:400; --font-selector:Q1VTVE9NO0dpbHJveSBTZW1pYm9sZA==; --framer-text-color:var(--extracted-1w3ko1f); --framer-font-size:15px;\">{{ text-placeholder }}</span></p>',\n                              htmlFromDesign: '<p style=\"--framer-font-size:15px; --framer-text-alignment:center;\"><span style=\"--framer-font-family:&quot;Gilroy Semibold&quot;, serif; --framer-font-style:normal; --framer-font-weight:400; --font-selector:Q1VTVE9NO0dpbHJveSBTZW1pYm9sZA==; --framer-text-color:var(--extracted-1w3ko1f); --framer-font-size:15px;\">\\u{1F465} </span><span style=\"--framer-font-family:&quot;Gilroy Semibold&quot;, serif; --framer-font-style:normal; --framer-font-weight:400; --font-selector:Q1VTVE9NO0dpbHJveSBTZW1pYm9sZA==; --framer-text-color:var(--extracted-3sq8v0); --framer-font-size:15px;\">5 Collaborators</span></p>',\n                              preload: []\n                            }\n                          },\n                          children: /*#__PURE__*/_jsx(RichText, {\n                            className: \"framer-1vp5pve\",\n                            style: {\n                              whiteSpace: \"pre\",\n                              \"--framer-paragraph-spacing\": \"0px\",\n                              \"--extracted-1w3ko1f\": \"rgb(0, 255, 163)\",\n                              \"--extracted-3sq8v0\": \"rgb(14, 208, 244)\"\n                            },\n                            name: \"\\u{1F465} 5 Collaborators\",\n                            fonts: [\"CUSTOM;Gilroy Semibold\"],\n                            withExternalLayout: true,\n                            verticalAlignment: \"center\",\n                            __fromCanvasComponent: true,\n                            __htmlStructure: '<p style=\"--framer-font-size:15px; --framer-text-alignment:center;\"><span style=\"--framer-font-family:&quot;Gilroy Semibold&quot;, serif; --framer-font-style:normal; --framer-font-weight:400; --font-selector:Q1VTVE9NO0dpbHJveSBTZW1pYm9sZA==; --framer-text-color:var(--extracted-1w3ko1f); --framer-font-size:15px;\">{{ text-placeholder }}</span></p>',\n                            htmlFromDesign: '<p style=\"--framer-font-size:15px; --framer-text-alignment:center;\"><span style=\"--framer-font-family:&quot;Gilroy Semibold&quot;, serif; --framer-font-style:normal; --framer-font-weight:400; --font-selector:Q1VTVE9NO0dpbHJveSBTZW1pYm9sZA==; --framer-text-color:var(--extracted-1w3ko1f); --framer-font-size:15px;\">\\u{1F465} </span><span style=\"--framer-font-family:&quot;Gilroy Semibold&quot;, serif; --framer-font-style:normal; --framer-font-weight:400; --font-selector:Q1VTVE9NO0dpbHJveSBTZW1pYm9sZA==; --framer-text-color:var(--extracted-3sq8v0); --framer-font-size:15px;\">5 Collaborators</span></p>'\n                          })\n                        })]\n                      })]\n                    }), /*#__PURE__*/_jsxs(MotionDivWithParallaxTransform, {\n                      className: \"framer-qwbzjh\",\n                      name: \"Task Request\",\n                      background: null,\n                      \"data-framer-name\": \"Task Request\",\n                      __framer__speed: 150,\n                      __framer__adjustPosition: true,\n                      __framer__offset: 20,\n                      children: [/*#__PURE__*/_jsx(motion.div, {\n                        className: \"framer-1ltwzxf\",\n                        name: \"Rectangle 72\",\n                        \"data-framer-name\": \"Rectangle 72\"\n                      }), /*#__PURE__*/_jsx(Stack, {\n                        className: \"framer-18p4hl0\",\n                        name: \"Frame 1111\",\n                        direction: \"horizontal\",\n                        distribution: \"center\",\n                        alignment: \"start\",\n                        gap: 10,\n                        __fromCanvasComponent: true,\n                        __contentWrapperStyle: {\n                          width: \"100%\",\n                          height: \"auto\",\n                          padding: \"10px 40px 10px 40px\"\n                        },\n                        \"data-framer-name\": \"Frame 1111\",\n                        children: /*#__PURE__*/_jsx(PropertyOverrides, {\n                          breakpoint: baseVariant,\n                          overrides: {\n                            llZCUywb0: {\n                              fonts: [\"CUSTOM;Gilroy Extrabold\"],\n                              __htmlStructure: '<p style=\"--framer-text-alignment:center;\"><span style=\"--framer-font-family:&quot;Gilroy Extrabold&quot;, serif; --framer-font-style:normal; --framer-font-weight:400; --font-selector:Q1VTVE9NO0dpbHJveSBFeHRyYWJvbGQ=; --framer-font-size:20px; --framer-text-transform:capitalize;\">{{ text-placeholder }}</span></p>',\n                              htmlFromDesign: '<p style=\"--framer-text-alignment:center;\"><span style=\"--framer-font-family:&quot;Gilroy Extrabold&quot;, serif; --framer-font-style:normal; --framer-font-weight:400; --font-selector:Q1VTVE9NO0dpbHJveSBFeHRyYWJvbGQ=; --framer-font-size:20px; --framer-text-transform:capitalize;\">Spec</span></p>',\n                              preload: []\n                            }\n                          },\n                          children: /*#__PURE__*/_jsx(RichText, {\n                            className: \"framer-yxdqb2\",\n                            style: {\n                              whiteSpace: \"pre\",\n                              \"--framer-paragraph-spacing\": \"0px\"\n                            },\n                            name: \"Spec\",\n                            fonts: [\"CUSTOM;Gilroy Extrabold\"],\n                            withExternalLayout: true,\n                            verticalAlignment: \"center\",\n                            __fromCanvasComponent: true,\n                            __htmlStructure: '<p style=\"--framer-text-alignment:center;\"><span style=\"--framer-font-family:&quot;Gilroy Extrabold&quot;, serif; --framer-font-style:normal; --framer-font-weight:400; --font-selector:Q1VTVE9NO0dpbHJveSBFeHRyYWJvbGQ=; --framer-font-size:20px; --framer-text-transform:capitalize;\">{{ text-placeholder }}</span></p>',\n                            htmlFromDesign: '<p style=\"--framer-text-alignment:center;\"><span style=\"--framer-font-family:&quot;Gilroy Extrabold&quot;, serif; --framer-font-style:normal; --framer-font-weight:400; --font-selector:Q1VTVE9NO0dpbHJveSBFeHRyYWJvbGQ=; --framer-font-size:20px; --framer-text-transform:capitalize;\">Spec</span></p>'\n                          })\n                        })\n                      }), /*#__PURE__*/_jsx(Stack, {\n                        className: \"framer-ufsu0r\",\n                        name: \"Frame 1108\",\n                        direction: \"vertical\",\n                        distribution: \"start\",\n                        alignment: \"start\",\n                        gap: 10,\n                        __fromCanvasComponent: true,\n                        __contentWrapperStyle: {\n                          width: \"auto\",\n                          height: \"auto\",\n                          padding: \"2px 10px 2px 10px\"\n                        },\n                        \"data-framer-name\": \"Frame 1108\",\n                        children: /*#__PURE__*/_jsx(Text, {\n                          withExternalLayout: true,\n                          verticalAlignment: \"center\",\n                          __fromCanvasComponent: true,\n                          alignment: \"center\",\n                          fonts: [\"CUSTOM;Gilroy Semibold\"],\n                          className: \"framer-1w10tyg\",\n                          name: \"React\",\n                          rawHTML: \"<span style='font-size: 0; line-height: 0; tab-size: 4; white-space: inherit; word-wrap: inherit'><span style='font-size: 0'><span style=''>React</span><br></span></span>\"\n                        })\n                      }), /*#__PURE__*/_jsx(Stack, {\n                        className: \"framer-os1wr2\",\n                        name: \"Frame 1109\",\n                        direction: \"vertical\",\n                        distribution: \"start\",\n                        alignment: \"start\",\n                        gap: 10,\n                        __fromCanvasComponent: true,\n                        __contentWrapperStyle: {\n                          width: \"auto\",\n                          height: \"auto\",\n                          padding: \"2px 10px 2px 10px\"\n                        },\n                        \"data-framer-name\": \"Frame 1109\",\n                        children: /*#__PURE__*/_jsx(Text, {\n                          withExternalLayout: true,\n                          verticalAlignment: \"center\",\n                          __fromCanvasComponent: true,\n                          alignment: \"center\",\n                          fonts: [\"CUSTOM;Gilroy Semibold\"],\n                          className: \"framer-1x9ssgr\",\n                          name: \"P3\",\n                          rawHTML: \"<span style='font-size: 0; line-height: 0; tab-size: 4; white-space: inherit; word-wrap: inherit'><span style='font-size: 0'><span style=''>P3</span><br></span></span>\"\n                        })\n                      }), /*#__PURE__*/_jsx(Text, {\n                        withExternalLayout: true,\n                        verticalAlignment: \"center\",\n                        __fromCanvasComponent: true,\n                        alignment: \"left\",\n                        fonts: [\"CUSTOM;Gilroy Semibold\"],\n                        className: \"framer-1h4x3no\",\n                        name: \"Legal Review\",\n                        rawHTML: \"<span style='font-size: 0; line-height: 0; tab-size: 4; white-space: inherit; word-wrap: inherit'><span style='font-size: 0'><span style=''>Legal</span><br></span><span style='font-size: 0'><span style=''>Review</span><br></span></span>\"\n                      }), /*#__PURE__*/_jsx(Stack, {\n                        className: \"framer-d46yf0\",\n                        name: \"Frame 1107\",\n                        direction: \"vertical\",\n                        distribution: \"start\",\n                        alignment: \"start\",\n                        gap: 10,\n                        __fromCanvasComponent: true,\n                        __contentWrapperStyle: {\n                          width: \"auto\",\n                          height: \"auto\",\n                          padding: \"2px 10px 2px 10px\"\n                        },\n                        \"data-framer-name\": \"Frame 1107\",\n                        children: /*#__PURE__*/_jsx(Text, {\n                          withExternalLayout: true,\n                          verticalAlignment: \"center\",\n                          __fromCanvasComponent: true,\n                          alignment: \"center\",\n                          fonts: [\"CUSTOM;Gilroy Semibold\"],\n                          className: \"framer-1td4nuy\",\n                          name: \"Front-End\",\n                          rawHTML: \"<span style='font-size: 0; line-height: 0; tab-size: 4; white-space: inherit; word-wrap: inherit'><span style='font-size: 0'><span style=''>Front-End</span><br></span></span>\"\n                        })\n                      }), /*#__PURE__*/_jsx(motion.div, {\n                        className: \"framer-1hs0dt3\",\n                        name: \"Group 2288\",\n                        background: null,\n                        \"data-framer-name\": \"Group 2288\"\n                      }), /*#__PURE__*/_jsxs(motion.div, {\n                        className: \"framer-1vc5rou\",\n                        name: \"Group 2290\",\n                        background: null,\n                        \"data-framer-name\": \"Group 2290\",\n                        children: [/*#__PURE__*/_jsx(motion.div, {\n                          className: \"framer-950mep\",\n                          name: \"Rectangle 65\",\n                          \"data-framer-name\": \"Rectangle 65\"\n                        }), /*#__PURE__*/_jsx(Stack, {\n                          className: \"framer-1lfdqhp\",\n                          name: \"Frame 1110\",\n                          direction: \"horizontal\",\n                          distribution: \"center\",\n                          alignment: \"start\",\n                          gap: 10,\n                          __fromCanvasComponent: true,\n                          __contentWrapperStyle: {\n                            width: \"100%\",\n                            height: \"auto\",\n                            padding: \"6px 40px 6px 40px\"\n                          },\n                          \"data-framer-name\": \"Frame 1110\",\n                          children: /*#__PURE__*/_jsx(PropertyOverrides, {\n                            breakpoint: baseVariant,\n                            overrides: {\n                              llZCUywb0: {\n                                rawHTML: \"<span style='font-size: 0; line-height: 0; tab-size: 4; white-space: inherit; word-wrap: inherit'><span style='font-size: 0'><span style=''>Bid</span><br></span></span>\",\n                                alignment: \"center\",\n                                fonts: [\"CUSTOM;Gilroy Extrabold\"]\n                              }\n                            },\n                            children: /*#__PURE__*/_jsx(Text, {\n                              withExternalLayout: true,\n                              verticalAlignment: \"center\",\n                              __fromCanvasComponent: true,\n                              alignment: \"center\",\n                              fonts: [\"GF;Gilroy-800\"],\n                              className: \"framer-1tvdqwe\",\n                              name: \"Bid\",\n                              rawHTML: \"<span style='font-size: 0; line-height: 0; tab-size: 4; white-space: inherit; word-wrap: inherit'><span style='font-size: 0'><span style=''>Bid</span><br></span></span>\"\n                            })\n                          })\n                        }), /*#__PURE__*/_jsx(Text, {\n                          withExternalLayout: true,\n                          verticalAlignment: \"center\",\n                          __fromCanvasComponent: true,\n                          alignment: \"center\",\n                          fonts: [\"CUSTOM;Gilroy Semibold\"],\n                          className: \"framer-mwpdhg\",\n                          name: \"Enter your bid\",\n                          rawHTML: \"<span style='font-size: 0; line-height: 0; tab-size: 4; white-space: inherit; word-wrap: inherit'><span style='font-size: 0'><span style=''>Enter your bid</span><br></span></span>\"\n                        })]\n                      }), /*#__PURE__*/_jsxs(motion.div, {\n                        className: \"framer-1gy09br\",\n                        name: \"Group 2291\",\n                        background: null,\n                        \"data-framer-name\": \"Group 2291\",\n                        children: [/*#__PURE__*/_jsx(PropertyOverrides, {\n                          breakpoint: baseVariant,\n                          overrides: {\n                            llZCUywb0: {\n                              fonts: [\"CUSTOM;Gilroy Semibold\"],\n                              __htmlStructure: '<p style=\"--framer-font-size:15px; --framer-text-alignment:left;\"><span style=\"--framer-font-family:&quot;Gilroy Semibold&quot;, serif; --framer-font-style:normal; --framer-font-weight:400; --font-selector:Q1VTVE9NO0dpbHJveSBTZW1pYm9sZA==; --framer-text-color:var(--extracted-1w3ko1f); --framer-font-size:15px;\">{{ text-placeholder }}</span></p>',\n                              htmlFromDesign: '<p style=\"--framer-font-size:15px; --framer-text-alignment:left;\"><span style=\"--framer-font-family:&quot;Gilroy Semibold&quot;, serif; --framer-font-style:normal; --framer-font-weight:400; --font-selector:Q1VTVE9NO0dpbHJveSBTZW1pYm9sZA==; --framer-text-color:var(--extracted-1w3ko1f); --framer-font-size:15px;\">\\u23F1 17 Sep, 2021</span></p>',\n                              preload: []\n                            }\n                          },\n                          children: /*#__PURE__*/_jsx(RichText, {\n                            className: \"framer-1yerqc4\",\n                            style: {\n                              whiteSpace: \"pre\",\n                              \"--framer-paragraph-spacing\": \"0px\",\n                              \"--extracted-1w3ko1f\": \"rgb(255, 116, 119)\"\n                            },\n                            name: \"\\u23F1 17 Sep, 2021\",\n                            fonts: [\"CUSTOM;Gilroy Semibold\"],\n                            withExternalLayout: true,\n                            verticalAlignment: \"center\",\n                            __fromCanvasComponent: true,\n                            __htmlStructure: '<p style=\"--framer-font-size:15px; --framer-text-alignment:left;\"><span style=\"--framer-font-family:&quot;Gilroy Semibold&quot;, serif; --framer-font-style:normal; --framer-font-weight:400; --font-selector:Q1VTVE9NO0dpbHJveSBTZW1pYm9sZA==; --framer-text-color:var(--extracted-1w3ko1f); --framer-font-size:15px;\">{{ text-placeholder }}</span></p>',\n                            htmlFromDesign: '<p style=\"--framer-font-size:15px; --framer-text-alignment:left;\"><span style=\"--framer-font-family:&quot;Gilroy Semibold&quot;, serif; --framer-font-style:normal; --framer-font-weight:400; --font-selector:Q1VTVE9NO0dpbHJveSBTZW1pYm9sZA==; --framer-text-color:var(--extracted-1w3ko1f); --framer-font-size:15px;\">\\u23F1 17 Sep, 2021</span></p>'\n                          })\n                        }), /*#__PURE__*/_jsx(PropertyOverrides, {\n                          breakpoint: baseVariant,\n                          overrides: {\n                            llZCUywb0: {\n                              fonts: [\"CUSTOM;Gilroy Semibold\"],\n                              __htmlStructure: '<p style=\"--framer-font-size:15px; --framer-text-alignment:left;\"><span style=\"--framer-font-family:&quot;Gilroy Semibold&quot;, serif; --framer-font-style:normal; --framer-font-weight:400; --font-selector:Q1VTVE9NO0dpbHJveSBTZW1pYm9sZA==; --framer-text-color:var(--extracted-1w3ko1f); --framer-font-size:15px;\">{{ text-placeholder }}</span></p>',\n                              htmlFromDesign: '<p style=\"--framer-font-size:15px; --framer-text-alignment:left;\"><span style=\"--framer-font-family:&quot;Gilroy Semibold&quot;, serif; --framer-font-style:normal; --framer-font-weight:400; --font-selector:Q1VTVE9NO0dpbHJveSBTZW1pYm9sZA==; --framer-text-color:var(--extracted-1w3ko1f); --framer-font-size:15px;\">\\u{1F465} </span><span style=\"--framer-font-family:&quot;Gilroy Semibold&quot;, serif; --framer-font-style:normal; --framer-font-weight:400; --font-selector:Q1VTVE9NO0dpbHJveSBTZW1pYm9sZA==; --framer-text-color:var(--extracted-3sq8v0); --framer-font-size:15px;\">5 Collaborators</span></p>',\n                              preload: []\n                            }\n                          },\n                          children: /*#__PURE__*/_jsx(RichText, {\n                            className: \"framer-lz2ppl\",\n                            style: {\n                              whiteSpace: \"pre\",\n                              \"--framer-paragraph-spacing\": \"0px\",\n                              \"--extracted-1w3ko1f\": \"rgb(0, 255, 163)\",\n                              \"--extracted-3sq8v0\": \"rgb(14, 208, 244)\"\n                            },\n                            name: \"\\u{1F465} 5 Collaborators\",\n                            fonts: [\"CUSTOM;Gilroy Semibold\"],\n                            withExternalLayout: true,\n                            verticalAlignment: \"center\",\n                            __fromCanvasComponent: true,\n                            __htmlStructure: '<p style=\"--framer-font-size:15px; --framer-text-alignment:left;\"><span style=\"--framer-font-family:&quot;Gilroy Semibold&quot;, serif; --framer-font-style:normal; --framer-font-weight:400; --font-selector:Q1VTVE9NO0dpbHJveSBTZW1pYm9sZA==; --framer-text-color:var(--extracted-1w3ko1f); --framer-font-size:15px;\">{{ text-placeholder }}</span></p>',\n                            htmlFromDesign: '<p style=\"--framer-font-size:15px; --framer-text-alignment:left;\"><span style=\"--framer-font-family:&quot;Gilroy Semibold&quot;, serif; --framer-font-style:normal; --framer-font-weight:400; --font-selector:Q1VTVE9NO0dpbHJveSBTZW1pYm9sZA==; --framer-text-color:var(--extracted-1w3ko1f); --framer-font-size:15px;\">\\u{1F465} </span><span style=\"--framer-font-family:&quot;Gilroy Semibold&quot;, serif; --framer-font-style:normal; --framer-font-weight:400; --font-selector:Q1VTVE9NO0dpbHJveSBTZW1pYm9sZA==; --framer-text-color:var(--extracted-3sq8v0); --framer-font-size:15px;\">5 Collaborators</span></p>'\n                          })\n                        })]\n                      })]\n                    }), /*#__PURE__*/_jsxs(MotionDivWithParallaxTransform, {\n                      className: \"framer-10vlaud\",\n                      name: \"Task Request\",\n                      background: null,\n                      \"data-framer-name\": \"Task Request\",\n                      __framer__speed: 150,\n                      __framer__adjustPosition: true,\n                      __framer__offset: 20,\n                      children: [/*#__PURE__*/_jsx(motion.div, {\n                        className: \"framer-1p05jz4\",\n                        name: \"Rectangle 72\",\n                        \"data-framer-name\": \"Rectangle 72\"\n                      }), /*#__PURE__*/_jsx(Stack, {\n                        className: \"framer-17b8zk8\",\n                        name: \"Frame 1111\",\n                        direction: \"horizontal\",\n                        distribution: \"center\",\n                        alignment: \"start\",\n                        gap: 10,\n                        __fromCanvasComponent: true,\n                        __contentWrapperStyle: {\n                          width: \"100%\",\n                          height: \"auto\",\n                          padding: \"10px 40px 10px 40px\"\n                        },\n                        \"data-framer-name\": \"Frame 1111\",\n                        children: /*#__PURE__*/_jsx(Text, {\n                          withExternalLayout: true,\n                          verticalAlignment: \"center\",\n                          __fromCanvasComponent: true,\n                          alignment: \"center\",\n                          fonts: [\"GF;Gilroy-800\"],\n                          className: \"framer-1090jtk\",\n                          name: \"Spec\",\n                          rawHTML: \"<span style='font-size: 0; line-height: 0; tab-size: 4; white-space: inherit; word-wrap: inherit'><span style='font-size: 0'><span style=''>Spec</span><br></span></span>\"\n                        })\n                      }), /*#__PURE__*/_jsx(Stack, {\n                        className: \"framer-kpstih\",\n                        name: \"Frame 1108\",\n                        direction: \"vertical\",\n                        distribution: \"start\",\n                        alignment: \"start\",\n                        gap: 10,\n                        __fromCanvasComponent: true,\n                        __contentWrapperStyle: {\n                          width: \"auto\",\n                          height: \"auto\",\n                          padding: \"2px 10px 2px 10px\"\n                        },\n                        \"data-framer-name\": \"Frame 1108\",\n                        children: /*#__PURE__*/_jsx(Text, {\n                          withExternalLayout: true,\n                          verticalAlignment: \"center\",\n                          __fromCanvasComponent: true,\n                          alignment: \"center\",\n                          fonts: [\"GF;Gilroy-600\"],\n                          className: \"framer-ly9vv7\",\n                          name: \"React\",\n                          rawHTML: \"<span style='font-size: 0; line-height: 0; tab-size: 4; white-space: inherit; word-wrap: inherit'><span style='font-size: 0'><span style=''>React</span><br></span></span>\"\n                        })\n                      }), /*#__PURE__*/_jsx(Stack, {\n                        className: \"framer-fv7c4b\",\n                        name: \"Frame 1109\",\n                        direction: \"vertical\",\n                        distribution: \"start\",\n                        alignment: \"start\",\n                        gap: 10,\n                        __fromCanvasComponent: true,\n                        __contentWrapperStyle: {\n                          width: \"auto\",\n                          height: \"auto\",\n                          padding: \"2px 10px 2px 10px\"\n                        },\n                        \"data-framer-name\": \"Frame 1109\",\n                        children: /*#__PURE__*/_jsx(Text, {\n                          withExternalLayout: true,\n                          verticalAlignment: \"center\",\n                          __fromCanvasComponent: true,\n                          alignment: \"center\",\n                          fonts: [\"GF;Gilroy-600\"],\n                          className: \"framer-jp4w4r\",\n                          name: \"P3\",\n                          rawHTML: \"<span style='font-size: 0; line-height: 0; tab-size: 4; white-space: inherit; word-wrap: inherit'><span style='font-size: 0'><span style=''>P3</span><br></span></span>\"\n                        })\n                      }), /*#__PURE__*/_jsx(Text, {\n                        withExternalLayout: true,\n                        verticalAlignment: \"center\",\n                        __fromCanvasComponent: true,\n                        alignment: \"left\",\n                        fonts: [\"GF;Gilroy-700\"],\n                        className: \"framer-78av6b\",\n                        name: \"Legal Review\",\n                        rawHTML: \"<span style='font-size: 0; line-height: 0; tab-size: 4; white-space: inherit; word-wrap: inherit'><span style='font-size: 0'><span style=''>Legal</span><br></span><span style='font-size: 0'><span style=''>Review</span><br></span></span>\"\n                      }), /*#__PURE__*/_jsx(Stack, {\n                        className: \"framer-2u0631\",\n                        name: \"Frame 1107\",\n                        direction: \"vertical\",\n                        distribution: \"start\",\n                        alignment: \"start\",\n                        gap: 10,\n                        __fromCanvasComponent: true,\n                        __contentWrapperStyle: {\n                          width: \"auto\",\n                          height: \"auto\",\n                          padding: \"2px 10px 2px 10px\"\n                        },\n                        \"data-framer-name\": \"Frame 1107\",\n                        children: /*#__PURE__*/_jsx(Text, {\n                          withExternalLayout: true,\n                          verticalAlignment: \"center\",\n                          __fromCanvasComponent: true,\n                          alignment: \"center\",\n                          fonts: [\"GF;Gilroy-600\"],\n                          className: \"framer-17s6qfg\",\n                          name: \"Front-End\",\n                          rawHTML: \"<span style='font-size: 0; line-height: 0; tab-size: 4; white-space: inherit; word-wrap: inherit'><span style='font-size: 0'><span style=''>Front-End</span><br></span></span>\"\n                        })\n                      }), /*#__PURE__*/_jsx(motion.div, {\n                        className: \"framer-1rryj7j\",\n                        name: \"Group 2288\",\n                        background: null,\n                        \"data-framer-name\": \"Group 2288\",\n                        children: /*#__PURE__*/_jsx(Text, {\n                          withExternalLayout: true,\n                          verticalAlignment: \"center\",\n                          __fromCanvasComponent: true,\n                          alignment: \"center\",\n                          fonts: [\"GF;Gilroy-800\"],\n                          className: \"framer-1447bnw\",\n                          name: \"Spec\",\n                          rawHTML: \"<span style='font-size: 0; line-height: 0; tab-size: 4; white-space: inherit; word-wrap: inherit'><span style='font-size: 0'><span style=''>Spec</span><br></span></span>\"\n                        })\n                      }), /*#__PURE__*/_jsxs(motion.div, {\n                        className: \"framer-1v7rvcz\",\n                        name: \"Group 2290\",\n                        background: null,\n                        \"data-framer-name\": \"Group 2290\",\n                        children: [/*#__PURE__*/_jsx(motion.div, {\n                          className: \"framer-17vvve5\",\n                          name: \"Rectangle 65\",\n                          \"data-framer-name\": \"Rectangle 65\"\n                        }), /*#__PURE__*/_jsx(Stack, {\n                          className: \"framer-i5k946\",\n                          name: \"Frame 1110\",\n                          direction: \"horizontal\",\n                          distribution: \"center\",\n                          alignment: \"start\",\n                          gap: 10,\n                          __fromCanvasComponent: true,\n                          __contentWrapperStyle: {\n                            width: \"100%\",\n                            height: \"auto\",\n                            padding: \"6px 40px 6px 40px\"\n                          },\n                          \"data-framer-name\": \"Frame 1110\",\n                          children: /*#__PURE__*/_jsx(Text, {\n                            withExternalLayout: true,\n                            verticalAlignment: \"center\",\n                            __fromCanvasComponent: true,\n                            alignment: \"center\",\n                            fonts: [\"GF;Gilroy-800\"],\n                            className: \"framer-1knmdlx\",\n                            name: \"Bid\",\n                            rawHTML: \"<span style='font-size: 0; line-height: 0; tab-size: 4; white-space: inherit; word-wrap: inherit'><span style='font-size: 0'><span style=''>Bid</span><br></span></span>\"\n                          })\n                        }), /*#__PURE__*/_jsx(Text, {\n                          withExternalLayout: true,\n                          verticalAlignment: \"center\",\n                          __fromCanvasComponent: true,\n                          alignment: \"center\",\n                          fonts: [\"GF;Gilroy-800\"],\n                          className: \"framer-1m21icl\",\n                          name: \"Enter your bid\",\n                          rawHTML: \"<span style='font-size: 0; line-height: 0; tab-size: 4; white-space: inherit; word-wrap: inherit'><span style='font-size: 0'><span style=''>Enter your bid</span><br></span></span>\"\n                        })]\n                      }), /*#__PURE__*/_jsxs(motion.div, {\n                        className: \"framer-1ckf5bi\",\n                        name: \"Group 2291\",\n                        background: null,\n                        \"data-framer-name\": \"Group 2291\",\n                        children: [/*#__PURE__*/_jsx(Text, {\n                          withExternalLayout: true,\n                          verticalAlignment: \"center\",\n                          __fromCanvasComponent: true,\n                          alignment: \"left\",\n                          fonts: [\"GF;Gilroy-600\"],\n                          className: \"framer-r7wbcv\",\n                          name: \"\\u23F1 17 Sep, 2021\",\n                          rawHTML: \"<span style='font-size: 0; line-height: 0; tab-size: 4; white-space: inherit; word-wrap: inherit'><span style='font-size: 0'><span style=''>\\u23F1 17 Sep, 2021</span><br></span></span>\"\n                        }), /*#__PURE__*/_jsx(Text, {\n                          withExternalLayout: true,\n                          verticalAlignment: \"center\",\n                          __fromCanvasComponent: true,\n                          alignment: \"left\",\n                          fonts: [\"GF;Gilroy-600\"],\n                          className: \"framer-g4atls\",\n                          name: \"\\u{1F465} 5 Collaborators\",\n                          rawHTML: \"<span style='font-size: 0; line-height: 0; tab-size: 4; white-space: inherit; word-wrap: inherit'><span style='font-size: 0'><span style=''>\\u{1F465} 5</span><span style='--framer-text-color: rgba(14, 208, 244, 1)'> Collaborators</span><br></span></span>\"\n                        })]\n                      })]\n                    })]\n                  }), /*#__PURE__*/_jsx(PropertyOverrides, {\n                    breakpoint: baseVariant,\n                    overrides: {\n                      llZCUywb0: {\n                        alignment: \"center\",\n                        gap: 26,\n                        __contentWrapperStyle: {\n                          width: \"100%\",\n                          height: \"auto\",\n                          padding: \"0px 0px 0px 0px\",\n                          maxWidth: \"740px\"\n                        },\n                        background: null\n                      }\n                    },\n                    children: /*#__PURE__*/_jsxs(Stack, {\n                      className: \"framer-1jndf2t\",\n                      background: null,\n                      direction: \"vertical\",\n                      distribution: \"start\",\n                      alignment: \"start\",\n                      gap: 20,\n                      __fromCanvasComponent: true,\n                      __contentWrapperStyle: {\n                        width: \"100%\",\n                        height: \"auto\",\n                        padding: \"0px 0px 0px 0px\",\n                        maxWidth: \"740px\"\n                      },\n                      children: [/*#__PURE__*/_jsx(PropertyOverrides, {\n                        breakpoint: baseVariant,\n                        overrides: {\n                          llZCUywb0: {\n                            fonts: [\"CUSTOM;Gilroy Bold\", \"CUSTOM;Gilroy Extrabold Italic\"],\n                            __htmlStructure: '<h4 style=\"--framer-line-height:1.1em; --framer-text-alignment:center;\"><span style=\"--framer-font-family:&quot;Gilroy Bold&quot;, serif; --framer-font-style:normal; --framer-font-weight:400; --font-selector:Q1VTVE9NO0dpbHJveSBCb2xk; --framer-text-color:var(--extracted-1wi65aa); --framer-font-size:36px; --framer-letter-spacing:-1.5px;\">{{ text-placeholder }}</span></h4>',\n                            htmlFromDesign: '<h4 style=\"--framer-line-height:1.1em; --framer-text-alignment:center;\"><span style=\"--framer-font-family:&quot;Gilroy Bold&quot;, serif; --framer-font-style:normal; --framer-font-weight:400; --font-selector:Q1VTVE9NO0dpbHJveSBCb2xk; --framer-text-color:var(--extracted-1wi65aa); --framer-font-size:36px; --framer-letter-spacing:-1.5px;\">Find, reward </span><span style=\"--framer-font-family:&quot;Gilroy Bold&quot;, serif; --framer-font-style:normal; --framer-font-weight:400; --font-selector:Q1VTVE9NO0dpbHJveSBCb2xk; --framer-text-color:var(--extracted-afnvhb); --framer-font-size:36px; --framer-letter-spacing:-1.5px;\"><br></span><span style=\"--framer-font-family:&quot;Gilroy Bold&quot;, serif; --framer-font-style:normal; --framer-font-weight:400; --font-selector:Q1VTVE9NO0dpbHJveSBCb2xk; --framer-text-color:var(--extracted-h2vp2a); --framer-font-size:36px; --framer-letter-spacing:-1.5px;\">and manage </span></h4><h4 style=\"--framer-line-height:1.1em; --framer-text-alignment:center;\"><span style=\"--framer-font-family:&quot;Gilroy Extrabold Italic&quot;, serif; --framer-font-style:normal; --framer-font-weight:400; --font-selector:Q1VTVE9NO0dpbHJveSBFeHRyYWJvbGQgSXRhbGlj; --framer-text-color:var(--extracted-1na3mxk); --framer-font-size:55px; --framer-letter-spacing:-1.5px;\">Contributions</span><span style=\"--framer-font-family:&quot;Gilroy Extrabold Italic&quot;, serif; --framer-font-style:normal; --framer-font-weight:400; --font-selector:Q1VTVE9NO0dpbHJveSBFeHRyYWJvbGQgSXRhbGlj; --framer-text-color:var(--extracted-3qfobh); --framer-font-size:60px; --framer-letter-spacing:-1.5px;\"> </span></h4>',\n                            preload: []\n                          }\n                        },\n                        children: /*#__PURE__*/_jsx(RichText, {\n                          className: \"framer-envxhw\",\n                          style: {\n                            whiteSpace: \"pre-wrap\",\n                            wordWrap: \"break-word\",\n                            wordBreak: \"break-word\",\n                            \"--framer-link-text-color\": \"rgb(0, 153, 255)\",\n                            \"--framer-link-text-decoration\": \"underline\",\n                            \"--framer-paragraph-spacing\": \"0px\",\n                            \"--extracted-1wi65aa\": \"rgb(255, 116, 119)\",\n                            \"--extracted-1na3mxk\": \"rgb(255, 116, 119)\"\n                          },\n                          fonts: [\"CUSTOM;Gilroy Bold\", \"CUSTOM;Gilroy Extrabold Italic\"],\n                          withExternalLayout: true,\n                          verticalAlignment: \"top\",\n                          __fromCanvasComponent: true,\n                          __htmlStructure: '<h4 style=\"--framer-line-height:1.1em; --framer-text-alignment:left;\"><span style=\"--framer-font-family:&quot;Gilroy Bold&quot;, serif; --framer-font-style:normal; --framer-font-weight:400; --font-selector:Q1VTVE9NO0dpbHJveSBCb2xk; --framer-text-color:var(--extracted-1wi65aa); --framer-font-size:36px; --framer-letter-spacing:-1.5px;\">{{ text-placeholder }}</span></h4>',\n                          htmlFromDesign: '<h4 style=\"--framer-line-height:1.1em; --framer-text-alignment:left;\"><span style=\"--framer-font-family:&quot;Gilroy Bold&quot;, serif; --framer-font-style:normal; --framer-font-weight:400; --font-selector:Q1VTVE9NO0dpbHJveSBCb2xk; --framer-text-color:var(--extracted-1wi65aa); --framer-font-size:36px; --framer-letter-spacing:-1.5px;\">Find, reward and manage </span></h4><h4 style=\"--framer-line-height:1.1em; --framer-text-alignment:left;\"><span style=\"--framer-font-family:&quot;Gilroy Extrabold Italic&quot;, serif; --framer-font-style:normal; --framer-font-weight:400; --font-selector:Q1VTVE9NO0dpbHJveSBFeHRyYWJvbGQgSXRhbGlj; --framer-text-color:var(--extracted-1na3mxk); --framer-font-size:60px; --framer-letter-spacing:-1.5px;\">Contributions </span></h4>'\n                        })\n                      }), /*#__PURE__*/_jsx(PropertyOverrides, {\n                        breakpoint: baseVariant,\n                        overrides: {\n                          llZCUywb0: {\n                            fonts: [\"CUSTOM;Gilroy Medium\"],\n                            __htmlStructure: '<h3 style=\"--framer-line-height:1.4em; --framer-text-alignment:center;\"><span style=\"--framer-font-family:&quot;Gilroy Medium&quot;, serif; --framer-font-style:normal; --framer-font-weight:400; --font-selector:Q1VTVE9NO0dpbHJveSBNZWRpdW0=; --framer-text-color:var(--extracted-1k2zljd); --framer-font-size:22px; --framer-letter-spacing:-0.2px;\">{{ text-placeholder }}</span></h3>',\n                            htmlFromDesign: '<h3 style=\"--framer-line-height:1.4em; --framer-text-alignment:center;\"><span style=\"--framer-font-family:&quot;Gilroy Medium&quot;, serif; --framer-font-style:normal; --framer-font-weight:400; --font-selector:Q1VTVE9NO0dpbHJveSBNZWRpdW0=; --framer-text-color:var(--extracted-1k2zljd); --framer-font-size:22px; --framer-letter-spacing:-0.2px;\">Open up tasks to a wider <br>talent pool while  tracking and <br>rewarding accomplishments via gamification, NFTs and <br>collaborations. </span></h3>',\n                            preload: []\n                          }\n                        },\n                        children: /*#__PURE__*/_jsx(RichText, {\n                          className: \"framer-1gc2cdt\",\n                          style: {\n                            whiteSpace: \"pre-wrap\",\n                            wordWrap: \"break-word\",\n                            wordBreak: \"break-word\",\n                            maxWidth: \"430px\",\n                            \"--framer-paragraph-spacing\": \"0px\",\n                            \"--extracted-1k2zljd\": \"rgb(255, 255, 255)\"\n                          },\n                          fonts: [\"CUSTOM;Gilroy Medium\"],\n                          withExternalLayout: true,\n                          verticalAlignment: \"top\",\n                          __fromCanvasComponent: true,\n                          __htmlStructure: '<h3 style=\"--framer-line-height:1.4em; --framer-text-alignment:left;\"><span style=\"--framer-font-family:&quot;Gilroy Medium&quot;, serif; --framer-font-style:normal; --framer-font-weight:400; --font-selector:Q1VTVE9NO0dpbHJveSBNZWRpdW0=; --framer-text-color:var(--extracted-1k2zljd); --framer-font-size:22px; --framer-letter-spacing:-0.2px;\">{{ text-placeholder }}</span></h3>',\n                          htmlFromDesign: '<h3 style=\"--framer-line-height:1.4em; --framer-text-alignment:left;\"><span style=\"--framer-font-family:&quot;Gilroy Medium&quot;, serif; --framer-font-style:normal; --framer-font-weight:400; --font-selector:Q1VTVE9NO0dpbHJveSBNZWRpdW0=; --framer-text-color:var(--extracted-1k2zljd); --framer-font-size:22px; --framer-letter-spacing:-0.2px;\">Open up tasks to a wider talent pool while  tracking and rewarding accomplishments via gamification, NFTs and collabs. </span></h3>'\n                        })\n                      })]\n                    })\n                  })]\n                })\n              })\n            })\n          }), /*#__PURE__*/_jsx(PropertyOverrides, {\n            breakpoint: baseVariant,\n            overrides: {\n              llZCUywb0: {\n                direction: \"vertical\",\n                __contentWrapperStyle: {\n                  width: \"100%\",\n                  height: \"auto\",\n                  padding: \"40px 40px 40px 40px\"\n                },\n                transformTemplate: undefined\n              }\n            },\n            children: /*#__PURE__*/_jsx(Stack, {\n              className: \"framer-bab3qo\",\n              name: \"Desktop\",\n              as: \"section\",\n              direction: \"horizontal\",\n              distribution: \"center\",\n              alignment: \"center\",\n              gap: 0,\n              __fromCanvasComponent: true,\n              __contentWrapperStyle: {\n                width: \"100%\",\n                height: \"auto\",\n                padding: \"100px 40px 100px 40px\"\n              },\n              \"data-framer-name\": \"Desktop\",\n              children: /*#__PURE__*/_jsx(PropertyOverrides, {\n                breakpoint: baseVariant,\n                overrides: {\n                  llZCUywb0: {\n                    direction: \"vertical\",\n                    gap: 71,\n                    __contentWrapperStyle: {\n                      width: \"100%\",\n                      height: \"auto\",\n                      padding: \"0px 0px 0px 0px\",\n                      maxWidth: \"1000px\"\n                    },\n                    background: null\n                  }\n                },\n                children: /*#__PURE__*/_jsxs(Stack, {\n                  className: \"framer-n2oqlt\",\n                  background: null,\n                  direction: \"horizontal\",\n                  distribution: \"start\",\n                  alignment: \"center\",\n                  gap: 41,\n                  __fromCanvasComponent: true,\n                  __contentWrapperStyle: {\n                    width: \"100%\",\n                    height: \"auto\",\n                    padding: \"0px 0px 0px 0px\",\n                    maxWidth: \"1000px\"\n                  },\n                  initial: {\n                    x: 0,\n                    y: 0,\n                    scale: 1,\n                    opacity: 0,\n                    transformPerspective: 1200,\n                    rotate: 0,\n                    rotateX: 0,\n                    rotateY: 0\n                  },\n                  animate: {\n                    x: 0,\n                    y: 0,\n                    scale: 1,\n                    opacity: 1,\n                    transformPerspective: 1200,\n                    rotate: 0,\n                    rotateX: 0,\n                    rotateY: 0,\n                    transition: {\n                      type: \"spring\",\n                      stiffness: 147,\n                      damping: 47,\n                      mass: 1.4,\n                      delay: .4\n                    }\n                  },\n                  exit: {\n                    x: 0,\n                    y: 0,\n                    scale: 1,\n                    opacity: 0,\n                    transformPerspective: 1200,\n                    rotate: 0,\n                    rotateX: 0,\n                    rotateY: 0,\n                    transition: {\n                      type: \"spring\",\n                      stiffness: 147,\n                      damping: 47,\n                      mass: 1.4,\n                      delay: .4\n                    }\n                  },\n                  children: [/*#__PURE__*/_jsx(PropertyOverrides, {\n                    breakpoint: baseVariant,\n                    overrides: {\n                      llZCUywb0: {\n                        alignment: \"center\",\n                        __contentWrapperStyle: {\n                          width: \"100%\",\n                          height: \"auto\",\n                          padding: \"0px 0px 0px 0px\",\n                          maxWidth: \"740px\"\n                        },\n                        background: null\n                      }\n                    },\n                    children: /*#__PURE__*/_jsxs(Stack, {\n                      className: \"framer-1aocenu\",\n                      background: null,\n                      direction: \"vertical\",\n                      distribution: \"start\",\n                      alignment: \"start\",\n                      gap: 20,\n                      __fromCanvasComponent: true,\n                      __contentWrapperStyle: {\n                        width: \"100%\",\n                        height: \"auto\",\n                        padding: \"0px 0px 0px 0px\",\n                        maxWidth: \"740px\"\n                      },\n                      children: [/*#__PURE__*/_jsx(PropertyOverrides, {\n                        breakpoint: baseVariant,\n                        overrides: {\n                          llZCUywb0: {\n                            fonts: [\"CUSTOM;Gilroy Bold\", \"CUSTOM;Gilroy Extrabold Italic\"],\n                            __htmlStructure: '<h4 style=\"--framer-line-height:1.1em; --framer-text-alignment:center;\"><span style=\"--framer-font-family:&quot;Gilroy Bold&quot;, serif; --framer-font-style:normal; --framer-font-weight:400; --font-selector:Q1VTVE9NO0dpbHJveSBCb2xk; --framer-text-color:var(--extracted-1wi65aa); --framer-font-size:36px; --framer-letter-spacing:-1.5px;\">{{ text-placeholder }}</span></h4>',\n                            htmlFromDesign: '<h4 style=\"--framer-line-height:1.1em; --framer-text-alignment:center;\"><span style=\"--framer-font-family:&quot;Gilroy Bold&quot;, serif; --framer-font-style:normal; --framer-font-weight:400; --font-selector:Q1VTVE9NO0dpbHJveSBCb2xk; --framer-text-color:var(--extracted-1wi65aa); --framer-font-size:36px; --framer-letter-spacing:-1.5px;\">Meet new members </span><span style=\"--framer-font-family:&quot;Gilroy Bold&quot;, serif; --framer-font-style:normal; --framer-font-weight:400; --font-selector:Q1VTVE9NO0dpbHJveSBCb2xk; --framer-text-color:var(--extracted-afnvhb); --framer-font-size:36px; --framer-letter-spacing:-1.5px;\"><br></span><span style=\"--framer-font-family:&quot;Gilroy Bold&quot;, serif; --framer-font-style:normal; --framer-font-weight:400; --font-selector:Q1VTVE9NO0dpbHJveSBCb2xk; --framer-text-color:var(--extracted-h2vp2a); --framer-font-size:36px; --framer-letter-spacing:-1.5px;\">and</span><span style=\"--framer-font-family:&quot;Gilroy Bold&quot;, serif; --framer-font-style:normal; --framer-font-weight:400; --font-selector:Q1VTVE9NO0dpbHJveSBCb2xk; --framer-text-color:var(--extracted-s35to5); --framer-font-size:36px; --framer-letter-spacing:-1.5px;\"><br></span><span style=\"--framer-font-family:&quot;Gilroy Extrabold Italic&quot;, serif; --framer-font-style:normal; --framer-font-weight:400; --font-selector:Q1VTVE9NO0dpbHJveSBFeHRyYWJvbGQgSXRhbGlj; --framer-text-color:var(--extracted-16a8cg8); --framer-font-size:60px; --framer-letter-spacing:-1.5px;\">Discover<br>DAOs </span></h4>',\n                            preload: []\n                          }\n                        },\n                        children: /*#__PURE__*/_jsx(RichText, {\n                          className: \"framer-9xfltz\",\n                          style: {\n                            whiteSpace: \"pre-wrap\",\n                            wordWrap: \"break-word\",\n                            wordBreak: \"break-word\",\n                            \"--framer-link-text-color\": \"rgb(0, 153, 255)\",\n                            \"--framer-link-text-decoration\": \"underline\",\n                            \"--framer-paragraph-spacing\": \"0px\",\n                            \"--extracted-1wi65aa\": \"rgb(110, 86, 207)\",\n                            \"--extracted-afnvhb\": \"rgb(0, 255, 163)\",\n                            \"--extracted-h2vp2a\": \"rgb(110, 86, 207)\"\n                          },\n                          fonts: [\"CUSTOM;Gilroy Bold\", \"CUSTOM;Gilroy Extrabold Italic\"],\n                          withExternalLayout: true,\n                          verticalAlignment: \"top\",\n                          __fromCanvasComponent: true,\n                          __htmlStructure: '<h4 style=\"--framer-line-height:1.1em; --framer-text-alignment:left;\"><span style=\"--framer-font-family:&quot;Gilroy Bold&quot;, serif; --framer-font-style:normal; --framer-font-weight:400; --font-selector:Q1VTVE9NO0dpbHJveSBCb2xk; --framer-text-color:var(--extracted-1wi65aa); --framer-font-size:36px; --framer-letter-spacing:-1.5px;\">{{ text-placeholder }}</span></h4>',\n                          htmlFromDesign: '<h4 style=\"--framer-line-height:1.1em; --framer-text-alignment:left;\"><span style=\"--framer-font-family:&quot;Gilroy Bold&quot;, serif; --framer-font-style:normal; --framer-font-weight:400; --font-selector:Q1VTVE9NO0dpbHJveSBCb2xk; --framer-text-color:var(--extracted-1wi65aa); --framer-font-size:36px; --framer-letter-spacing:-1.5px;\">Meet new members and</span><span style=\"--framer-font-family:&quot;Gilroy Bold&quot;, serif; --framer-font-style:normal; --framer-font-weight:400; --font-selector:Q1VTVE9NO0dpbHJveSBCb2xk; --framer-text-color:var(--extracted-afnvhb); --framer-font-size:36px; --framer-letter-spacing:-1.5px;\"><br></span><span style=\"--framer-font-family:&quot;Gilroy Extrabold Italic&quot;, serif; --framer-font-style:normal; --framer-font-weight:400; --font-selector:Q1VTVE9NO0dpbHJveSBFeHRyYWJvbGQgSXRhbGlj; --framer-text-color:var(--extracted-h2vp2a); --framer-font-size:60px; --framer-letter-spacing:-1.5px;\">Discover DAOs </span></h4>'\n                        })\n                      }), /*#__PURE__*/_jsx(PropertyOverrides, {\n                        breakpoint: baseVariant,\n                        overrides: {\n                          llZCUywb0: {\n                            fonts: [\"CUSTOM;Gilroy Medium\"],\n                            __htmlStructure: '<h3 style=\"--framer-line-height:1.4em; --framer-text-alignment:center;\"><span style=\"--framer-font-family:&quot;Gilroy Medium&quot;, serif; --framer-font-style:normal; --framer-font-weight:400; --font-selector:Q1VTVE9NO0dpbHJveSBNZWRpdW0=; --framer-text-color:var(--extracted-1k2zljd); --framer-font-size:22px; --framer-letter-spacing:-0.2px;\">{{ text-placeholder }}</span></h3>',\n                            htmlFromDesign: '<h3 style=\"--framer-line-height:1.4em; --framer-text-alignment:center;\"><span style=\"--framer-font-family:&quot;Gilroy Medium&quot;, serif; --framer-font-style:normal; --framer-font-weight:400; --font-selector:Q1VTVE9NO0dpbHJveSBNZWRpdW0=; --framer-text-color:var(--extracted-1k2zljd); --framer-font-size:22px; --framer-letter-spacing:-0.2px;\">Discover members with credible contribution history and aligned </span><span style=\"--framer-font-family:&quot;Gilroy Medium&quot;, serif; --framer-font-style:normal; --framer-font-weight:400; --font-selector:Q1VTVE9NO0dpbHJveSBNZWRpdW0=; --framer-text-color:var(--extracted-cku5m2); --framer-font-size:22px; --framer-letter-spacing:-0.2px;\"><br></span><span style=\"--framer-font-family:&quot;Gilroy Medium&quot;, serif; --framer-font-style:normal; --framer-font-weight:400; --font-selector:Q1VTVE9NO0dpbHJveSBNZWRpdW0=; --framer-text-color:var(--extracted-7519bk); --framer-font-size:22px; --framer-letter-spacing:-0.2px;\">interest </span></h3>',\n                            preload: [],\n                            transformTemplate: undefined\n                          }\n                        },\n                        children: /*#__PURE__*/_jsx(RichText, {\n                          className: \"framer-1s72wbs\",\n                          style: {\n                            whiteSpace: \"pre-wrap\",\n                            wordWrap: \"break-word\",\n                            wordBreak: \"break-word\",\n                            maxWidth: \"430px\",\n                            \"--framer-paragraph-spacing\": \"0px\",\n                            \"--extracted-1k2zljd\": \"rgb(255, 255, 255)\"\n                          },\n                          fonts: [\"CUSTOM;Gilroy Medium\"],\n                          withExternalLayout: true,\n                          verticalAlignment: \"top\",\n                          __fromCanvasComponent: true,\n                          __htmlStructure: '<h3 style=\"--framer-line-height:1.4em; --framer-text-alignment:left;\"><span style=\"--framer-font-family:&quot;Gilroy Medium&quot;, serif; --framer-font-style:normal; --framer-font-weight:400; --font-selector:Q1VTVE9NO0dpbHJveSBNZWRpdW0=; --framer-text-color:var(--extracted-1k2zljd); --framer-font-size:22px; --framer-letter-spacing:-0.2px;\">{{ text-placeholder }}</span></h3>',\n                          htmlFromDesign: '<h3 style=\"--framer-line-height:1.4em; --framer-text-alignment:left;\"><span style=\"--framer-font-family:&quot;Gilroy Medium&quot;, serif; --framer-font-style:normal; --framer-font-weight:400; --font-selector:Q1VTVE9NO0dpbHJveSBNZWRpdW0=; --framer-text-color:var(--extracted-1k2zljd); --framer-font-size:22px; --framer-letter-spacing:-0.2px;\">Discover members with credible contribution history and aligned interest </span></h3>'\n                        })\n                      })]\n                    })\n                  }), /*#__PURE__*/_jsxs(motion.div, {\n                    className: \"framer-1qlckw1\",\n                    children: [/*#__PURE__*/_jsxs(MotionDivWithParallaxTransform, {\n                      className: \"framer-4nw896\",\n                      name: \"Group 2314\",\n                      background: null,\n                      \"data-framer-name\": \"Group 2314\",\n                      __framer__speed: 150,\n                      __framer__adjustPosition: true,\n                      __framer__offset: 20,\n                      children: [/*#__PURE__*/_jsx(motion.div, {\n                        className: \"framer-1jopbgv\",\n                        name: \"Rectangle 1469\",\n                        \"data-framer-name\": \"Rectangle 1469\"\n                      }), /*#__PURE__*/_jsx(Image, {\n                        className: \"framer-193k9do\",\n                        name: \"image 16\",\n                        background: {\n                          src: new URL(\"https://framerusercontent.com/images/bMTSysXWplYAnFzs3x3WWcT4qGc.png\").href,\n                          srcSet: `${new URL(\"https://framerusercontent.com/images/bMTSysXWplYAnFzs3x3WWcT4qGc.png?scale-down-to=512\").href} 512w, ${new URL(\"https://framerusercontent.com/images/bMTSysXWplYAnFzs3x3WWcT4qGc.png?scale-down-to=1024\").href} 1024w, ${new URL(\"https://framerusercontent.com/images/bMTSysXWplYAnFzs3x3WWcT4qGc.png\").href} 1500w`,\n                          sizes: \"393.75262451171875px\",\n                          fit: \"fill\"\n                        },\n                        \"data-framer-name\": \"image 16\",\n                        alt: \"\"\n                      }), /*#__PURE__*/_jsx(SVG, {\n                        withExternalLayout: true,\n                        intrinsicHeight: 16,\n                        intrinsicWidth: 19,\n                        className: \"framer-k2sq3u\",\n                        name: \".\",\n                        fill: \"rgba(0,0,0,1)\",\n                        \"data-framer-name\": \".\",\n                        svg: '<svg width=\"19\" height=\"16\" viewBox=\"0 0 19 16\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g clip-path=\"url(#clip0_796_3158)\">\\n<path d=\"M13.94 15.4607C13.94 15.4607 13.3578 14.6693 12.8726 13.9698C14.9911 13.2889 15.7997 11.7796 15.7997 11.7796C15.1367 12.2766 14.506 12.6263 13.94 12.8656C13.1314 13.2521 12.3552 13.5097 11.5951 13.657C10.0426 13.9883 8.6195 13.8962 7.40665 13.6386C6.48483 13.4361 5.69243 13.1416 5.02939 12.8472C4.65744 12.6815 4.25314 12.479 3.84886 12.2214C3.80034 12.1845 3.75182 12.1661 3.70331 12.1293C3.67097 12.1109 3.6548 12.0925 3.63863 12.0741C3.34753 11.8901 3.18582 11.7612 3.18582 11.7612C3.18582 11.7612 3.96206 13.2337 6.01586 13.933C5.53071 14.6325 4.93235 15.4607 4.93235 15.4607C1.35842 15.3318 0 12.6631 0 12.6631C0 6.73654 2.32872 1.93272 2.32872 1.93272C4.65744 -0.0550633 6.87299 0.000152954 6.87299 0.000152954L7.03468 0.221018C4.12377 1.1781 2.78153 2.63213 2.78153 2.63213C2.78153 2.63213 3.1373 2.41126 3.73565 2.09837C5.46602 1.23332 6.84061 0.994047 7.40665 0.938829C7.50366 0.920423 7.58454 0.902017 7.68155 0.902017C8.668 0.754776 9.78384 0.717965 10.9482 0.865205C12.4845 1.06767 14.1341 1.58302 15.8159 2.63213C15.8159 2.63213 14.5383 1.25172 11.7891 0.294639L12.0155 0.000152954C12.0155 0.000152954 14.2311 -0.0550633 16.5598 1.93272C16.5598 1.93272 18.8885 6.73654 18.8885 12.6631C18.8885 12.6631 17.5139 15.3318 13.94 15.4607ZM6.42015 6.86538C5.49836 6.86538 4.77064 7.78563 4.77064 8.90839C4.77064 10.0311 5.51454 10.9514 6.42015 10.9514C7.34196 10.9514 8.06964 10.0311 8.06964 8.90839C8.08583 7.78563 7.34196 6.86538 6.42015 6.86538ZM12.3228 6.86538C11.401 6.86538 10.6733 7.78563 10.6733 8.90839C10.6733 10.0311 11.4172 10.9514 12.3228 10.9514C13.2446 10.9514 13.9723 10.0311 13.9723 8.90839C13.9723 7.78563 13.2446 6.86538 12.3228 6.86538Z\" fill=\"#5865F2\"/>\\n</g>\\n<defs>\\n<clipPath id=\"clip0_796_3158\">\\n<rect width=\"18.8885\" height=\"15.4607\" fill=\"white\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n'\n                      }), /*#__PURE__*/_jsx(Text, {\n                        withExternalLayout: true,\n                        verticalAlignment: \"center\",\n                        __fromCanvasComponent: true,\n                        alignment: \"left\",\n                        fonts: [\"CUSTOM;Gilroy Extrabold\"],\n                        className: \"framer-pfdcsk\",\n                        name: \"Orange DAO\",\n                        rawHTML: \"<span style='font-size: 0; line-height: 0; tab-size: 4; white-space: inherit; word-wrap: inherit'><span style='font-size: 0'><span style=''>Orange DAO</span><br></span></span>\"\n                      }), /*#__PURE__*/_jsx(Text, {\n                        withExternalLayout: true,\n                        verticalAlignment: \"center\",\n                        __fromCanvasComponent: true,\n                        alignment: \"left\",\n                        fonts: [\"CUSTOM;Gilroy Semibold\"],\n                        className: \"framer-1vh7g0q\",\n                        name: \"YC Alum on a mission to invest in the future of Web3\",\n                        rawHTML: \"<span style='font-size: 0; line-height: 0; tab-size: 4; white-space: inherit; word-wrap: inherit'><span style='font-size: 0'><span style=''>YC Alum on a mission to invest in the future of Web3</span><br></span></span>\"\n                      }), /*#__PURE__*/_jsxs(motion.div, {\n                        className: \"framer-1wpk8u3\",\n                        name: \"Group 2313\",\n                        background: null,\n                        \"data-framer-name\": \"Group 2313\",\n                        children: [/*#__PURE__*/_jsx(motion.div, {\n                          className: \"framer-18c6pvy\",\n                          name: \"Rectangle 1470\",\n                          \"data-framer-name\": \"Rectangle 1470\",\n                          \"data-border\": true\n                        }), /*#__PURE__*/_jsx(motion.div, {\n                          className: \"framer-acrcq4\",\n                          name: \"Rectangle 1471\",\n                          \"data-framer-name\": \"Rectangle 1471\",\n                          \"data-border\": true\n                        }), /*#__PURE__*/_jsx(Text, {\n                          withExternalLayout: true,\n                          verticalAlignment: \"center\",\n                          __fromCanvasComponent: true,\n                          alignment: \"center\",\n                          fonts: [\"CUSTOM;Gilroy Semibold\"],\n                          className: \"framer-1ad3dm9\",\n                          name: \"Education\",\n                          rawHTML: \"<span style='font-size: 0; line-height: 0; tab-size: 4; white-space: inherit; word-wrap: inherit'><span style='font-size: 0'><span style=''>Education</span><br></span></span>\"\n                        }), /*#__PURE__*/_jsx(Text, {\n                          withExternalLayout: true,\n                          verticalAlignment: \"center\",\n                          __fromCanvasComponent: true,\n                          alignment: \"center\",\n                          fonts: [\"CUSTOM;Gilroy Semibold\"],\n                          className: \"framer-ipqnt4\",\n                          name: \"VC\",\n                          rawHTML: \"<span style='font-size: 0; line-height: 0; tab-size: 4; white-space: inherit; word-wrap: inherit'><span style='font-size: 0'><span style=''>VC</span><br></span></span>\"\n                        }), /*#__PURE__*/_jsx(motion.div, {\n                          className: \"framer-zeqyq6\",\n                          name: \"Rectangle 1472\",\n                          \"data-framer-name\": \"Rectangle 1472\",\n                          \"data-border\": true\n                        }), /*#__PURE__*/_jsx(Text, {\n                          withExternalLayout: true,\n                          verticalAlignment: \"center\",\n                          __fromCanvasComponent: true,\n                          alignment: \"center\",\n                          fonts: [\"CUSTOM;Gilroy Semibold\"],\n                          className: \"framer-146mr5x\",\n                          name: \"Investment\",\n                          rawHTML: \"<span style='font-size: 0; line-height: 0; tab-size: 4; white-space: inherit; word-wrap: inherit'><span style='font-size: 0'><span style=''>Investment</span><br></span></span>\"\n                        })]\n                      }), /*#__PURE__*/_jsxs(motion.div, {\n                        className: \"framer-o8tr7q\",\n                        name: \"Group 2310\",\n                        background: null,\n                        \"data-framer-name\": \"Group 2310\",\n                        children: [/*#__PURE__*/_jsx(motion.div, {\n                          className: \"framer-24ug99\",\n                          name: \"Ellipse 21\",\n                          \"data-framer-name\": \"Ellipse 21\",\n                          \"data-border\": true\n                        }), /*#__PURE__*/_jsx(Image, {\n                          className: \"framer-1f61lei\",\n                          name: \"image 15\",\n                          background: {\n                            src: new URL(\"https://framerusercontent.com/images/ONvDTkvn43ciu5708RZDEjTdgwE.png\").href,\n                            fit: \"fill\"\n                          },\n                          \"data-framer-name\": \"image 15\",\n                          alt: \"\"\n                        })]\n                      }), /*#__PURE__*/_jsx(Image, {\n                        className: \"framer-cs2ewj\",\n                        name: \"image 17\",\n                        background: {\n                          src: new URL(\"https://framerusercontent.com/images/gVo9DCay3GAW7qMLsxO4MF43hM.png\").href,\n                          srcSet: `${new URL(\"https://framerusercontent.com/images/gVo9DCay3GAW7qMLsxO4MF43hM.png?scale-down-to=512\").href} 512w, ${new URL(\"https://framerusercontent.com/images/gVo9DCay3GAW7qMLsxO4MF43hM.png?scale-down-to=1024\").href} 1024w, ${new URL(\"https://framerusercontent.com/images/gVo9DCay3GAW7qMLsxO4MF43hM.png?scale-down-to=2048\").href} 2048w, ${new URL(\"https://framerusercontent.com/images/gVo9DCay3GAW7qMLsxO4MF43hM.png\").href} 2491w`,\n                          sizes: \"18.88850212097168px\",\n                          fit: \"fill\"\n                        },\n                        \"data-framer-name\": \"image 17\",\n                        alt: \"\"\n                      })]\n                    }), /*#__PURE__*/_jsxs(MotionDivWithParallaxTransform, {\n                      className: \"framer-16bw5i0\",\n                      name: \"Group 2318\",\n                      background: null,\n                      \"data-framer-name\": \"Group 2318\",\n                      __framer__speed: 150,\n                      __framer__adjustPosition: true,\n                      __framer__offset: 20,\n                      children: [/*#__PURE__*/_jsx(motion.div, {\n                        className: \"framer-1vci7ac\",\n                        name: \"Rectangle 1469\",\n                        \"data-framer-name\": \"Rectangle 1469\",\n                        children: /*#__PURE__*/_jsx(Text, {\n                          withExternalLayout: true,\n                          verticalAlignment: \"center\",\n                          __fromCanvasComponent: true,\n                          alignment: \"left\",\n                          fonts: [\"CUSTOM;Gilroy Semibold\"],\n                          className: \"framer-22pxbc\",\n                          name: \"The digital cornerstone between technology and culture communities.\",\n                          rawHTML: \"<span style='font-size: 0; line-height: 0; tab-size: 4; white-space: inherit; word-wrap: inherit'><span style='font-size: 0'><span style=''>The digital cornerstone between technology and culture communities.</span><br></span></span>\"\n                        })\n                      }), /*#__PURE__*/_jsx(Image, {\n                        className: \"framer-uhritk\",\n                        name: \"image 16\",\n                        background: {\n                          src: new URL(\"https://framerusercontent.com/images/FdbKtv8NSqfU2gqCqVpPbJaGIY.png\").href,\n                          srcSet: `${new URL(\"https://framerusercontent.com/images/FdbKtv8NSqfU2gqCqVpPbJaGIY.png?scale-down-to=512\").href} 512w, ${new URL(\"https://framerusercontent.com/images/FdbKtv8NSqfU2gqCqVpPbJaGIY.png?scale-down-to=1024\").href} 1024w, ${new URL(\"https://framerusercontent.com/images/FdbKtv8NSqfU2gqCqVpPbJaGIY.png\").href} 1790w`,\n                          sizes: \"393.75262451171875px\",\n                          fit: \"fill\"\n                        },\n                        \"data-framer-name\": \"image 16\",\n                        alt: \"\"\n                      }), /*#__PURE__*/_jsx(SVG, {\n                        withExternalLayout: true,\n                        intrinsicHeight: 16,\n                        intrinsicWidth: 19,\n                        className: \"framer-pzqs57\",\n                        name: \".\",\n                        fill: \"rgba(0,0,0,1)\",\n                        \"data-framer-name\": \".\",\n                        svg: '<svg width=\"19\" height=\"16\" viewBox=\"0 0 19 16\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g clip-path=\"url(#clip0_796_3554)\">\\n<path d=\"M13.94 15.4607C13.94 15.4607 13.3578 14.6693 12.8726 13.9698C14.9911 13.2889 15.7997 11.7796 15.7997 11.7796C15.1367 12.2766 14.506 12.6263 13.94 12.8656C13.1314 13.2521 12.3552 13.5097 11.5951 13.657C10.0426 13.9883 8.6195 13.8962 7.40665 13.6386C6.48483 13.4361 5.69243 13.1416 5.02939 12.8472C4.65744 12.6815 4.25314 12.479 3.84886 12.2214C3.80034 12.1845 3.75182 12.1661 3.70331 12.1293C3.67097 12.1109 3.6548 12.0925 3.63863 12.0741C3.34753 11.8901 3.18582 11.7612 3.18582 11.7612C3.18582 11.7612 3.96206 13.2337 6.01586 13.933C5.53071 14.6325 4.93235 15.4607 4.93235 15.4607C1.35842 15.3318 0 12.6631 0 12.6631C0 6.73654 2.32872 1.93272 2.32872 1.93272C4.65744 -0.0550633 6.87299 0.000152954 6.87299 0.000152954L7.03468 0.221018C4.12377 1.1781 2.78153 2.63213 2.78153 2.63213C2.78153 2.63213 3.1373 2.41126 3.73565 2.09837C5.46602 1.23332 6.84061 0.994047 7.40665 0.938829C7.50366 0.920423 7.58454 0.902017 7.68155 0.902017C8.668 0.754776 9.78384 0.717965 10.9482 0.865205C12.4845 1.06767 14.1341 1.58302 15.8159 2.63213C15.8159 2.63213 14.5383 1.25172 11.7891 0.294639L12.0155 0.000152954C12.0155 0.000152954 14.2311 -0.0550633 16.5598 1.93272C16.5598 1.93272 18.8885 6.73654 18.8885 12.6631C18.8885 12.6631 17.5139 15.3318 13.94 15.4607ZM6.42015 6.86538C5.49836 6.86538 4.77064 7.78563 4.77064 8.90839C4.77064 10.0311 5.51454 10.9514 6.42015 10.9514C7.34196 10.9514 8.06964 10.0311 8.06964 8.90839C8.08583 7.78563 7.34196 6.86538 6.42015 6.86538ZM12.3228 6.86538C11.401 6.86538 10.6733 7.78563 10.6733 8.90839C10.6733 10.0311 11.4172 10.9514 12.3228 10.9514C13.2446 10.9514 13.9723 10.0311 13.9723 8.90839C13.9723 7.78563 13.2446 6.86538 12.3228 6.86538Z\" fill=\"#5865F2\"/>\\n</g>\\n<defs>\\n<clipPath id=\"clip0_796_3554\">\\n<rect width=\"18.8885\" height=\"15.4607\" fill=\"white\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n'\n                      }), /*#__PURE__*/_jsx(Text, {\n                        withExternalLayout: true,\n                        verticalAlignment: \"center\",\n                        __fromCanvasComponent: true,\n                        alignment: \"left\",\n                        fonts: [\"CUSTOM;Gilroy Extrabold\"],\n                        className: \"framer-zanv98\",\n                        name: \"Friends With Benefits\",\n                        rawHTML: \"<span style='font-size: 0; line-height: 0; tab-size: 4; white-space: inherit; word-wrap: inherit'><span style='font-size: 0'><span style=''>Friends With Benefits</span><br></span></span>\"\n                      }), /*#__PURE__*/_jsxs(motion.div, {\n                        className: \"framer-iqzhse\",\n                        name: \"Group 2313\",\n                        background: null,\n                        \"data-framer-name\": \"Group 2313\",\n                        children: [/*#__PURE__*/_jsx(motion.div, {\n                          className: \"framer-19hy6oy\",\n                          name: \"Rectangle 1470\",\n                          \"data-framer-name\": \"Rectangle 1470\",\n                          \"data-border\": true\n                        }), /*#__PURE__*/_jsx(motion.div, {\n                          className: \"framer-rs4yq5\",\n                          name: \"Rectangle 1471\",\n                          \"data-framer-name\": \"Rectangle 1471\",\n                          \"data-border\": true\n                        }), /*#__PURE__*/_jsx(Text, {\n                          withExternalLayout: true,\n                          verticalAlignment: \"center\",\n                          __fromCanvasComponent: true,\n                          alignment: \"center\",\n                          fonts: [\"CUSTOM;Gilroy Semibold\"],\n                          className: \"framer-108tmnr\",\n                          name: \"Tokenized\",\n                          rawHTML: \"<span style='font-size: 0; line-height: 0; tab-size: 4; white-space: inherit; word-wrap: inherit'><span style='font-size: 0'><span style=''>Tokenized</span><br></span></span>\"\n                        }), /*#__PURE__*/_jsx(Text, {\n                          withExternalLayout: true,\n                          verticalAlignment: \"center\",\n                          __fromCanvasComponent: true,\n                          alignment: \"center\",\n                          fonts: [\"CUSTOM;Gilroy Semibold\"],\n                          className: \"framer-1i5asx\",\n                          name: \"Culture\",\n                          rawHTML: \"<span style='font-size: 0; line-height: 0; tab-size: 4; white-space: inherit; word-wrap: inherit'><span style='font-size: 0'><span style=''>Culture</span><br></span></span>\"\n                        }), /*#__PURE__*/_jsx(motion.div, {\n                          className: \"framer-1i85dw0\",\n                          name: \"Rectangle 1472\",\n                          \"data-framer-name\": \"Rectangle 1472\",\n                          \"data-border\": true\n                        }), /*#__PURE__*/_jsx(Text, {\n                          withExternalLayout: true,\n                          verticalAlignment: \"center\",\n                          __fromCanvasComponent: true,\n                          alignment: \"center\",\n                          fonts: [\"CUSTOM;Gilroy Semibold\"],\n                          className: \"framer-umvdyo\",\n                          name: \"Social\",\n                          rawHTML: \"<span style='font-size: 0; line-height: 0; tab-size: 4; white-space: inherit; word-wrap: inherit'><span style='font-size: 0'><span style=''>Social</span><br></span></span>\"\n                        })]\n                      }), /*#__PURE__*/_jsxs(motion.div, {\n                        className: \"framer-1od13i1\",\n                        name: \"Group 2310\",\n                        background: null,\n                        \"data-framer-name\": \"Group 2310\",\n                        children: [/*#__PURE__*/_jsx(motion.div, {\n                          className: \"framer-ayf2r\",\n                          name: \"Ellipse 21\",\n                          \"data-framer-name\": \"Ellipse 21\",\n                          \"data-border\": true\n                        }), /*#__PURE__*/_jsx(Image, {\n                          className: \"framer-15rebqp\",\n                          name: \"image 15\",\n                          background: {\n                            src: new URL(\"https://framerusercontent.com/images/kc5NYAM4ZZNFNYsPYfLaYKFYdlo.png\").href,\n                            fit: \"fill\"\n                          },\n                          \"data-framer-name\": \"image 15\",\n                          alt: \"\"\n                        })]\n                      }), /*#__PURE__*/_jsx(Image, {\n                        className: \"framer-1jiswzo\",\n                        name: \"image 17\",\n                        background: {\n                          src: new URL(\"https://framerusercontent.com/images/gVo9DCay3GAW7qMLsxO4MF43hM.png\").href,\n                          srcSet: `${new URL(\"https://framerusercontent.com/images/gVo9DCay3GAW7qMLsxO4MF43hM.png?scale-down-to=512\").href} 512w, ${new URL(\"https://framerusercontent.com/images/gVo9DCay3GAW7qMLsxO4MF43hM.png?scale-down-to=1024\").href} 1024w, ${new URL(\"https://framerusercontent.com/images/gVo9DCay3GAW7qMLsxO4MF43hM.png?scale-down-to=2048\").href} 2048w, ${new URL(\"https://framerusercontent.com/images/gVo9DCay3GAW7qMLsxO4MF43hM.png\").href} 2491w`,\n                          sizes: \"18.88850212097168px\",\n                          fit: \"fill\"\n                        },\n                        \"data-framer-name\": \"image 17\",\n                        alt: \"\"\n                      })]\n                    }), /*#__PURE__*/_jsxs(MotionDivWithParallaxTransform, {\n                      className: \"framer-1lclahu\",\n                      name: \"Group 2312\",\n                      background: null,\n                      \"data-framer-name\": \"Group 2312\",\n                      __framer__speed: 150,\n                      __framer__adjustPosition: true,\n                      __framer__offset: 20,\n                      children: [/*#__PURE__*/_jsx(motion.div, {\n                        className: \"framer-udzyja\",\n                        name: \"Rectangle 1469\",\n                        \"data-framer-name\": \"Rectangle 1469\"\n                      }), /*#__PURE__*/_jsx(Image, {\n                        className: \"framer-lvl2rd\",\n                        name: \"image 16\",\n                        background: {\n                          src: new URL(\"https://framerusercontent.com/images/YoFseksRKNk9kAQyhGKmDYZo.png\").href,\n                          srcSet: `${new URL(\"https://framerusercontent.com/images/YoFseksRKNk9kAQyhGKmDYZo.png?scale-down-to=512\").href} 512w, ${new URL(\"https://framerusercontent.com/images/YoFseksRKNk9kAQyhGKmDYZo.png?scale-down-to=1024\").href} 1024w, ${new URL(\"https://framerusercontent.com/images/YoFseksRKNk9kAQyhGKmDYZo.png\").href} 1200w`,\n                          sizes: \"393.75262451171875px\",\n                          fit: \"fill\"\n                        },\n                        \"data-framer-name\": \"image 16\",\n                        alt: \"\"\n                      }), /*#__PURE__*/_jsx(SVG, {\n                        withExternalLayout: true,\n                        intrinsicHeight: 16,\n                        intrinsicWidth: 19,\n                        className: \"framer-zqttzp\",\n                        name: \".\",\n                        fill: \"rgba(0,0,0,1)\",\n                        \"data-framer-name\": \".\",\n                        svg: '<svg width=\"19\" height=\"16\" viewBox=\"0 0 19 16\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g clip-path=\"url(#clip0_796_3122)\">\\n<path d=\"M13.94 15.4607C13.94 15.4607 13.3578 14.6693 12.8726 13.9698C14.9911 13.2889 15.7997 11.7796 15.7997 11.7796C15.1367 12.2766 14.506 12.6263 13.94 12.8656C13.1314 13.2521 12.3552 13.5097 11.5951 13.657C10.0426 13.9883 8.6195 13.8962 7.40665 13.6386C6.48483 13.4361 5.69243 13.1416 5.02939 12.8472C4.65744 12.6815 4.25314 12.479 3.84886 12.2214C3.80034 12.1845 3.75182 12.1661 3.70331 12.1293C3.67097 12.1109 3.6548 12.0925 3.63863 12.0741C3.34753 11.8901 3.18582 11.7612 3.18582 11.7612C3.18582 11.7612 3.96206 13.2337 6.01586 13.933C5.53071 14.6325 4.93235 15.4607 4.93235 15.4607C1.35842 15.3318 0 12.6631 0 12.6631C0 6.73654 2.32872 1.93272 2.32872 1.93272C4.65744 -0.0550633 6.87299 0.000152954 6.87299 0.000152954L7.03468 0.221018C4.12377 1.1781 2.78153 2.63213 2.78153 2.63213C2.78153 2.63213 3.1373 2.41126 3.73565 2.09837C5.46602 1.23332 6.84061 0.994047 7.40665 0.938829C7.50366 0.920423 7.58454 0.902017 7.68155 0.902017C8.668 0.754776 9.78384 0.717965 10.9482 0.865205C12.4845 1.06767 14.1341 1.58302 15.8159 2.63213C15.8159 2.63213 14.5383 1.25172 11.7891 0.294639L12.0155 0.000152954C12.0155 0.000152954 14.2311 -0.0550633 16.5598 1.93272C16.5598 1.93272 18.8885 6.73654 18.8885 12.6631C18.8885 12.6631 17.5139 15.3318 13.94 15.4607ZM6.42015 6.86538C5.49836 6.86538 4.77064 7.78563 4.77064 8.90839C4.77064 10.0311 5.51454 10.9514 6.42015 10.9514C7.34196 10.9514 8.06964 10.0311 8.06964 8.90839C8.08583 7.78563 7.34196 6.86538 6.42015 6.86538ZM12.3228 6.86538C11.401 6.86538 10.6733 7.78563 10.6733 8.90839C10.6733 10.0311 11.4172 10.9514 12.3228 10.9514C13.2446 10.9514 13.9723 10.0311 13.9723 8.90839C13.9723 7.78563 13.2446 6.86538 12.3228 6.86538Z\" fill=\"#5865F2\"/>\\n</g>\\n<defs>\\n<clipPath id=\"clip0_796_3122\">\\n<rect width=\"18.8885\" height=\"15.4607\" fill=\"white\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n'\n                      }), /*#__PURE__*/_jsx(Text, {\n                        withExternalLayout: true,\n                        verticalAlignment: \"center\",\n                        __fromCanvasComponent: true,\n                        alignment: \"left\",\n                        fonts: [\"CUSTOM;Gilroy Extrabold\"],\n                        className: \"framer-o8p7w5\",\n                        name: \"UniSwap\",\n                        rawHTML: \"<span style='font-size: 0; line-height: 0; tab-size: 4; white-space: inherit; word-wrap: inherit'><span style='font-size: 0'><span style=''>UniSwap</span><br></span></span>\"\n                      }), /*#__PURE__*/_jsx(Text, {\n                        withExternalLayout: true,\n                        verticalAlignment: \"center\",\n                        __fromCanvasComponent: true,\n                        alignment: \"left\",\n                        fonts: [\"CUSTOM;Gilroy Semibold\"],\n                        className: \"framer-v64ioc\",\n                        name: \"A protocol for trading and automated liquidity provision on Ethereum\",\n                        rawHTML: \"<span style='font-size: 0; line-height: 0; tab-size: 4; white-space: inherit; word-wrap: inherit'><span style='font-size: 0'><span style=''>A protocol for trading and automated liquidity provision on Ethereum</span><br></span></span>\"\n                      }), /*#__PURE__*/_jsxs(motion.div, {\n                        className: \"framer-5ynei3\",\n                        name: \"Group 2313\",\n                        background: null,\n                        \"data-framer-name\": \"Group 2313\",\n                        children: [/*#__PURE__*/_jsx(motion.div, {\n                          className: \"framer-24yznz\",\n                          name: \"Rectangle 1470\",\n                          \"data-framer-name\": \"Rectangle 1470\",\n                          \"data-border\": true\n                        }), /*#__PURE__*/_jsx(motion.div, {\n                          className: \"framer-1iyke2s\",\n                          name: \"Rectangle 1471\",\n                          \"data-framer-name\": \"Rectangle 1471\",\n                          \"data-border\": true\n                        }), /*#__PURE__*/_jsx(Text, {\n                          withExternalLayout: true,\n                          verticalAlignment: \"center\",\n                          __fromCanvasComponent: true,\n                          alignment: \"center\",\n                          fonts: [\"CUSTOM;Gilroy Semibold\"],\n                          className: \"framer-16scav8\",\n                          name: \"DeFi\",\n                          rawHTML: \"<span style='font-size: 0; line-height: 0; tab-size: 4; white-space: inherit; word-wrap: inherit'><span style='font-size: 0'><span style=''>DeFi</span><br></span></span>\"\n                        }), /*#__PURE__*/_jsx(Text, {\n                          withExternalLayout: true,\n                          verticalAlignment: \"center\",\n                          __fromCanvasComponent: true,\n                          alignment: \"center\",\n                          fonts: [\"CUSTOM;Gilroy Semibold\"],\n                          className: \"framer-1044jcm\",\n                          name: \"Trading\",\n                          rawHTML: \"<span style='font-size: 0; line-height: 0; tab-size: 4; white-space: inherit; word-wrap: inherit'><span style='font-size: 0'><span style=''>Trading</span><br></span></span>\"\n                        }), /*#__PURE__*/_jsx(motion.div, {\n                          className: \"framer-7ay57\",\n                          name: \"Rectangle 1472\",\n                          \"data-framer-name\": \"Rectangle 1472\",\n                          \"data-border\": true\n                        }), /*#__PURE__*/_jsx(Text, {\n                          withExternalLayout: true,\n                          verticalAlignment: \"center\",\n                          __fromCanvasComponent: true,\n                          alignment: \"center\",\n                          fonts: [\"CUSTOM;Gilroy Semibold\"],\n                          className: \"framer-1bz3i9m\",\n                          name: \"Protocol\",\n                          rawHTML: \"<span style='font-size: 0; line-height: 0; tab-size: 4; white-space: inherit; word-wrap: inherit'><span style='font-size: 0'><span style=''>Protocol</span><br></span></span>\"\n                        })]\n                      }), /*#__PURE__*/_jsxs(motion.div, {\n                        className: \"framer-4alob8\",\n                        name: \"Group 2310\",\n                        background: null,\n                        \"data-framer-name\": \"Group 2310\",\n                        children: [/*#__PURE__*/_jsx(motion.div, {\n                          className: \"framer-kbtvrk\",\n                          name: \"Ellipse 21\",\n                          \"data-framer-name\": \"Ellipse 21\",\n                          \"data-border\": true\n                        }), /*#__PURE__*/_jsx(Image, {\n                          className: \"framer-ldwlq1\",\n                          name: \"image 15\",\n                          background: {\n                            src: new URL(\"https://framerusercontent.com/images/126NSdVdlxwPmaq8woytseHIO8w.png\").href,\n                            fit: \"fill\"\n                          },\n                          \"data-framer-name\": \"image 15\",\n                          alt: \"\"\n                        })]\n                      }), /*#__PURE__*/_jsx(Image, {\n                        className: \"framer-12xluaa\",\n                        name: \"image 17\",\n                        background: {\n                          src: new URL(\"https://framerusercontent.com/images/gVo9DCay3GAW7qMLsxO4MF43hM.png\").href,\n                          srcSet: `${new URL(\"https://framerusercontent.com/images/gVo9DCay3GAW7qMLsxO4MF43hM.png?scale-down-to=512\").href} 512w, ${new URL(\"https://framerusercontent.com/images/gVo9DCay3GAW7qMLsxO4MF43hM.png?scale-down-to=1024\").href} 1024w, ${new URL(\"https://framerusercontent.com/images/gVo9DCay3GAW7qMLsxO4MF43hM.png?scale-down-to=2048\").href} 2048w, ${new URL(\"https://framerusercontent.com/images/gVo9DCay3GAW7qMLsxO4MF43hM.png\").href} 2491w`,\n                          sizes: \"18.88850212097168px\",\n                          fit: \"fill\"\n                        },\n                        \"data-framer-name\": \"image 17\",\n                        alt: \"\"\n                      })]\n                    }), /*#__PURE__*/_jsxs(MotionDivWithParallaxTransform, {\n                      className: \"framer-syj972\",\n                      name: \"Group 2311\",\n                      background: null,\n                      \"data-framer-name\": \"Group 2311\",\n                      __framer__speed: 150,\n                      __framer__adjustPosition: true,\n                      __framer__offset: 20,\n                      children: [/*#__PURE__*/_jsxs(motion.div, {\n                        className: \"framer-101vckf\",\n                        name: \"Rectangle 1469\",\n                        \"data-framer-name\": \"Rectangle 1469\",\n                        children: [/*#__PURE__*/_jsx(Text, {\n                          withExternalLayout: true,\n                          verticalAlignment: \"center\",\n                          __fromCanvasComponent: true,\n                          alignment: \"left\",\n                          fonts: [\"CUSTOM;Gilroy Semibold\"],\n                          className: \"framer-18l5z0v\",\n                          name: \"A DAO for devs to come together to learn and build together\",\n                          rawHTML: \"<span style='font-size: 0; line-height: 0; tab-size: 4; white-space: inherit; word-wrap: inherit'><span style='font-size: 0'><span style=''>A DAO for devs to come together to learn and build together</span><br></span></span>\"\n                        }), /*#__PURE__*/_jsx(Text, {\n                          withExternalLayout: true,\n                          verticalAlignment: \"center\",\n                          __fromCanvasComponent: true,\n                          alignment: \"left\",\n                          fonts: [\"CUSTOM;Gilroy Extrabold\"],\n                          className: \"framer-1jui59q\",\n                          name: \"Developer DAO\",\n                          rawHTML: \"<span style='font-size: 0; line-height: 0; tab-size: 4; white-space: inherit; word-wrap: inherit'><span style='font-size: 0'><span style=''>Developer DAO</span><br></span></span>\"\n                        })]\n                      }), /*#__PURE__*/_jsx(Image, {\n                        className: \"framer-yxw7zu\",\n                        name: \"image 16\",\n                        background: {\n                          src: new URL(\"https://framerusercontent.com/images/m7avruY9hDlnWbMINCkTvf3dM.png\").href,\n                          srcSet: `${new URL(\"https://framerusercontent.com/images/m7avruY9hDlnWbMINCkTvf3dM.png?scale-down-to=512\").href} 512w, ${new URL(\"https://framerusercontent.com/images/m7avruY9hDlnWbMINCkTvf3dM.png?scale-down-to=1024\").href} 1024w, ${new URL(\"https://framerusercontent.com/images/m7avruY9hDlnWbMINCkTvf3dM.png\").href} 1381w`,\n                          sizes: \"393.75262451171875px\",\n                          fit: \"fill\"\n                        },\n                        \"data-framer-name\": \"image 16\",\n                        alt: \"\"\n                      }), /*#__PURE__*/_jsx(SVG, {\n                        withExternalLayout: true,\n                        intrinsicHeight: 16,\n                        intrinsicWidth: 19,\n                        className: \"framer-11nwrk4\",\n                        name: \".\",\n                        fill: \"rgba(0,0,0,1)\",\n                        \"data-framer-name\": \".\",\n                        svg: '<svg width=\"19\" height=\"16\" viewBox=\"0 0 19 16\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g clip-path=\"url(#clip0_791_3012)\">\\n<path d=\"M13.94 15.4607C13.94 15.4607 13.3578 14.6693 12.8726 13.9698C14.9911 13.2889 15.7997 11.7796 15.7997 11.7796C15.1367 12.2766 14.506 12.6263 13.94 12.8656C13.1314 13.2521 12.3552 13.5097 11.5951 13.657C10.0426 13.9883 8.6195 13.8962 7.40665 13.6386C6.48483 13.4361 5.69243 13.1416 5.02939 12.8472C4.65744 12.6815 4.25314 12.479 3.84886 12.2214C3.80034 12.1845 3.75182 12.1661 3.70331 12.1293C3.67097 12.1109 3.6548 12.0925 3.63863 12.0741C3.34753 11.8901 3.18582 11.7612 3.18582 11.7612C3.18582 11.7612 3.96206 13.2337 6.01586 13.933C5.53071 14.6325 4.93235 15.4607 4.93235 15.4607C1.35842 15.3318 0 12.6631 0 12.6631C0 6.73654 2.32872 1.93272 2.32872 1.93272C4.65744 -0.0550633 6.87299 0.000152954 6.87299 0.000152954L7.03468 0.221018C4.12377 1.1781 2.78153 2.63213 2.78153 2.63213C2.78153 2.63213 3.1373 2.41126 3.73565 2.09837C5.46602 1.23332 6.84061 0.994047 7.40665 0.938829C7.50366 0.920423 7.58454 0.902017 7.68155 0.902017C8.668 0.754776 9.78384 0.717965 10.9482 0.865205C12.4845 1.06767 14.1341 1.58302 15.8159 2.63213C15.8159 2.63213 14.5383 1.25172 11.7891 0.294639L12.0155 0.000152954C12.0155 0.000152954 14.2311 -0.0550633 16.5598 1.93272C16.5598 1.93272 18.8885 6.73654 18.8885 12.6631C18.8885 12.6631 17.5139 15.3318 13.94 15.4607ZM6.42015 6.86538C5.49836 6.86538 4.77064 7.78563 4.77064 8.90839C4.77064 10.0311 5.51454 10.9514 6.42015 10.9514C7.34196 10.9514 8.06964 10.0311 8.06964 8.90839C8.08583 7.78563 7.34196 6.86538 6.42015 6.86538ZM12.3228 6.86538C11.401 6.86538 10.6733 7.78563 10.6733 8.90839C10.6733 10.0311 11.4172 10.9514 12.3228 10.9514C13.2446 10.9514 13.9723 10.0311 13.9723 8.90839C13.9723 7.78563 13.2446 6.86538 12.3228 6.86538Z\" fill=\"#5865F2\"/>\\n</g>\\n<defs>\\n<clipPath id=\"clip0_791_3012\">\\n<rect width=\"18.8885\" height=\"15.4607\" fill=\"white\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n'\n                      }), /*#__PURE__*/_jsxs(motion.div, {\n                        className: \"framer-8sfy0z\",\n                        name: \"Group 2313\",\n                        background: null,\n                        \"data-framer-name\": \"Group 2313\",\n                        children: [/*#__PURE__*/_jsx(motion.div, {\n                          className: \"framer-18dx3ub\",\n                          name: \"Rectangle 1470\",\n                          \"data-framer-name\": \"Rectangle 1470\",\n                          \"data-border\": true\n                        }), /*#__PURE__*/_jsx(motion.div, {\n                          className: \"framer-jtylcs\",\n                          name: \"Rectangle 1471\",\n                          \"data-framer-name\": \"Rectangle 1471\",\n                          \"data-border\": true\n                        }), /*#__PURE__*/_jsx(Text, {\n                          withExternalLayout: true,\n                          verticalAlignment: \"center\",\n                          __fromCanvasComponent: true,\n                          alignment: \"center\",\n                          fonts: [\"CUSTOM;Gilroy Semibold\"],\n                          className: \"framer-hzfn4z\",\n                          name: \"Education\",\n                          rawHTML: \"<span style='font-size: 0; line-height: 0; tab-size: 4; white-space: inherit; word-wrap: inherit'><span style='font-size: 0'><span style=''>Education</span><br></span></span>\"\n                        }), /*#__PURE__*/_jsx(Text, {\n                          withExternalLayout: true,\n                          verticalAlignment: \"center\",\n                          __fromCanvasComponent: true,\n                          alignment: \"center\",\n                          fonts: [\"CUSTOM;Gilroy Semibold\"],\n                          className: \"framer-a6cnis\",\n                          name: \"Service\",\n                          rawHTML: \"<span style='font-size: 0; line-height: 0; tab-size: 4; white-space: inherit; word-wrap: inherit'><span style='font-size: 0'><span style=''>Service</span><br></span></span>\"\n                        }), /*#__PURE__*/_jsx(motion.div, {\n                          className: \"framer-1ye1ta6\",\n                          name: \"Rectangle 1472\",\n                          \"data-framer-name\": \"Rectangle 1472\",\n                          \"data-border\": true\n                        }), /*#__PURE__*/_jsx(Text, {\n                          withExternalLayout: true,\n                          verticalAlignment: \"center\",\n                          __fromCanvasComponent: true,\n                          alignment: \"center\",\n                          fonts: [\"CUSTOM;Gilroy Semibold\"],\n                          className: \"framer-cl186v\",\n                          name: \"Devs\",\n                          rawHTML: \"<span style='font-size: 0; line-height: 0; tab-size: 4; white-space: inherit; word-wrap: inherit'><span style='font-size: 0'><span style=''>Devs</span><br></span></span>\"\n                        })]\n                      }), /*#__PURE__*/_jsxs(motion.div, {\n                        className: \"framer-1x6638n\",\n                        name: \"Group 2310\",\n                        background: null,\n                        \"data-framer-name\": \"Group 2310\",\n                        children: [/*#__PURE__*/_jsx(motion.div, {\n                          className: \"framer-18tirmy\",\n                          name: \"Ellipse 21\",\n                          \"data-framer-name\": \"Ellipse 21\",\n                          \"data-border\": true\n                        }), /*#__PURE__*/_jsx(Image, {\n                          className: \"framer-58xhz5\",\n                          name: \"image 15\",\n                          background: {\n                            src: new URL(\"https://framerusercontent.com/images/FlzlfYAlR7QIgeDTMwgS6oYmsI4.png\").href,\n                            fit: \"stretch\"\n                          },\n                          \"data-framer-name\": \"image 15\",\n                          alt: \"\"\n                        })]\n                      }), /*#__PURE__*/_jsx(Image, {\n                        className: \"framer-brj3r\",\n                        name: \"image 17\",\n                        background: {\n                          src: new URL(\"https://framerusercontent.com/images/gVo9DCay3GAW7qMLsxO4MF43hM.png\").href,\n                          srcSet: `${new URL(\"https://framerusercontent.com/images/gVo9DCay3GAW7qMLsxO4MF43hM.png?scale-down-to=512\").href} 512w, ${new URL(\"https://framerusercontent.com/images/gVo9DCay3GAW7qMLsxO4MF43hM.png?scale-down-to=1024\").href} 1024w, ${new URL(\"https://framerusercontent.com/images/gVo9DCay3GAW7qMLsxO4MF43hM.png?scale-down-to=2048\").href} 2048w, ${new URL(\"https://framerusercontent.com/images/gVo9DCay3GAW7qMLsxO4MF43hM.png\").href} 2491w`,\n                          sizes: \"18.88850212097168px\",\n                          fit: \"fill\"\n                        },\n                        \"data-framer-name\": \"image 17\",\n                        alt: \"\"\n                      })]\n                    }), /*#__PURE__*/_jsxs(MotionDivWithParallaxTransform, {\n                      className: \"framer-1j069hm\",\n                      name: \"Group 2315\",\n                      background: null,\n                      \"data-framer-name\": \"Group 2315\",\n                      __framer__speed: 150,\n                      __framer__adjustPosition: true,\n                      __framer__offset: 20,\n                      children: [/*#__PURE__*/_jsx(motion.div, {\n                        className: \"framer-1y0o3b2\",\n                        name: \"Rectangle 1469\",\n                        \"data-framer-name\": \"Rectangle 1469\"\n                      }), /*#__PURE__*/_jsx(SVG, {\n                        withExternalLayout: true,\n                        intrinsicHeight: 16,\n                        intrinsicWidth: 19,\n                        className: \"framer-12xubex\",\n                        name: \".\",\n                        fill: \"rgba(0,0,0,1)\",\n                        \"data-framer-name\": \".\",\n                        svg: '<svg width=\"19\" height=\"16\" viewBox=\"0 0 19 16\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g clip-path=\"url(#clip0_796_3194)\">\\n<path d=\"M13.94 15.4607C13.94 15.4607 13.3578 14.6693 12.8726 13.9698C14.9911 13.2889 15.7997 11.7796 15.7997 11.7796C15.1367 12.2766 14.506 12.6263 13.94 12.8656C13.1314 13.2521 12.3552 13.5097 11.5951 13.657C10.0426 13.9883 8.6195 13.8962 7.40665 13.6386C6.48483 13.4361 5.69243 13.1416 5.02939 12.8472C4.65744 12.6815 4.25314 12.479 3.84886 12.2214C3.80034 12.1845 3.75182 12.1661 3.70331 12.1293C3.67097 12.1109 3.6548 12.0925 3.63863 12.0741C3.34753 11.8901 3.18582 11.7612 3.18582 11.7612C3.18582 11.7612 3.96206 13.2337 6.01586 13.933C5.53071 14.6325 4.93235 15.4607 4.93235 15.4607C1.35842 15.3318 0 12.6631 0 12.6631C0 6.73654 2.32872 1.93272 2.32872 1.93272C4.65744 -0.0550633 6.87299 0.000152954 6.87299 0.000152954L7.03468 0.221018C4.12377 1.1781 2.78153 2.63213 2.78153 2.63213C2.78153 2.63213 3.1373 2.41126 3.73565 2.09837C5.46602 1.23332 6.84061 0.994047 7.40665 0.938829C7.50366 0.920423 7.58454 0.902017 7.68155 0.902017C8.668 0.754776 9.78384 0.717965 10.9482 0.865205C12.4845 1.06767 14.1341 1.58302 15.8159 2.63213C15.8159 2.63213 14.5383 1.25172 11.7891 0.294639L12.0155 0.000152954C12.0155 0.000152954 14.2311 -0.0550633 16.5598 1.93272C16.5598 1.93272 18.8885 6.73654 18.8885 12.6631C18.8885 12.6631 17.5139 15.3318 13.94 15.4607ZM6.42015 6.86538C5.49836 6.86538 4.77064 7.78563 4.77064 8.90839C4.77064 10.0311 5.51454 10.9514 6.42015 10.9514C7.34196 10.9514 8.06964 10.0311 8.06964 8.90839C8.08583 7.78563 7.34196 6.86538 6.42015 6.86538ZM12.3228 6.86538C11.401 6.86538 10.6733 7.78563 10.6733 8.90839C10.6733 10.0311 11.4172 10.9514 12.3228 10.9514C13.2446 10.9514 13.9723 10.0311 13.9723 8.90839C13.9723 7.78563 13.2446 6.86538 12.3228 6.86538Z\" fill=\"#5865F2\"/>\\n</g>\\n<defs>\\n<clipPath id=\"clip0_796_3194\">\\n<rect width=\"18.8885\" height=\"15.4607\" fill=\"white\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n'\n                      }), /*#__PURE__*/_jsx(Text, {\n                        withExternalLayout: true,\n                        verticalAlignment: \"center\",\n                        __fromCanvasComponent: true,\n                        alignment: \"left\",\n                        fonts: [\"CUSTOM;Gilroy Extrabold\"],\n                        className: \"framer-18bu1hr\",\n                        name: \"Kilma DAO\",\n                        rawHTML: \"<span style='font-size: 0; line-height: 0; tab-size: 4; white-space: inherit; word-wrap: inherit'><span style='font-size: 0'><span style=''>Kilma DAO</span><br></span></span>\"\n                      }), /*#__PURE__*/_jsx(Text, {\n                        withExternalLayout: true,\n                        verticalAlignment: \"center\",\n                        __fromCanvasComponent: true,\n                        alignment: \"left\",\n                        fonts: [\"CUSTOM;Gilroy Semibold\"],\n                        className: \"framer-1npvhhi\",\n                        name: \"Fight climate change and earn rewards with KLIMA\\u2019s native token backed by carbon credits\",\n                        rawHTML: \"<span style='font-size: 0; line-height: 0; tab-size: 4; white-space: inherit; word-wrap: inherit'><span style='font-size: 0'><span style=''>Fight climate change and earn rewards with KLIMA\\u2019s native token backed by carbon credits </span><br></span></span>\"\n                      }), /*#__PURE__*/_jsxs(motion.div, {\n                        className: \"framer-ni6yy2\",\n                        name: \"Group 2313\",\n                        background: null,\n                        \"data-framer-name\": \"Group 2313\",\n                        children: [/*#__PURE__*/_jsx(motion.div, {\n                          className: \"framer-190244d\",\n                          name: \"Rectangle 1470\",\n                          \"data-framer-name\": \"Rectangle 1470\",\n                          \"data-border\": true\n                        }), /*#__PURE__*/_jsx(motion.div, {\n                          className: \"framer-z5grcg\",\n                          name: \"Rectangle 1471\",\n                          \"data-framer-name\": \"Rectangle 1471\",\n                          \"data-border\": true\n                        }), /*#__PURE__*/_jsx(Text, {\n                          withExternalLayout: true,\n                          verticalAlignment: \"center\",\n                          __fromCanvasComponent: true,\n                          alignment: \"center\",\n                          fonts: [\"CUSTOM;Gilroy Semibold\"],\n                          className: \"framer-1lw8h3h\",\n                          name: \"Tokenized\",\n                          rawHTML: \"<span style='font-size: 0; line-height: 0; tab-size: 4; white-space: inherit; word-wrap: inherit'><span style='font-size: 0'><span style=''>Tokenized</span><br></span></span>\"\n                        }), /*#__PURE__*/_jsx(Text, {\n                          withExternalLayout: true,\n                          verticalAlignment: \"center\",\n                          __fromCanvasComponent: true,\n                          alignment: \"center\",\n                          fonts: [\"CUSTOM;Gilroy Semibold\"],\n                          className: \"framer-qr63du\",\n                          name: \"Climate\",\n                          rawHTML: \"<span style='font-size: 0; line-height: 0; tab-size: 4; white-space: inherit; word-wrap: inherit'><span style='font-size: 0'><span style=''>Climate</span><br></span></span>\"\n                        }), /*#__PURE__*/_jsx(motion.div, {\n                          className: \"framer-18zua1w\",\n                          name: \"Rectangle 1472\",\n                          \"data-framer-name\": \"Rectangle 1472\",\n                          \"data-border\": true\n                        }), /*#__PURE__*/_jsx(Text, {\n                          withExternalLayout: true,\n                          verticalAlignment: \"center\",\n                          __fromCanvasComponent: true,\n                          alignment: \"center\",\n                          fonts: [\"CUSTOM;Gilroy Semibold\"],\n                          className: \"framer-oyisgm\",\n                          name: \"ESG\",\n                          rawHTML: \"<span style='font-size: 0; line-height: 0; tab-size: 4; white-space: inherit; word-wrap: inherit'><span style='font-size: 0'><span style=''>ESG</span><br></span></span>\"\n                        })]\n                      }), /*#__PURE__*/_jsxs(motion.div, {\n                        className: \"framer-as252l\",\n                        name: \"Group 2310\",\n                        background: null,\n                        \"data-framer-name\": \"Group 2310\",\n                        children: [/*#__PURE__*/_jsx(motion.div, {\n                          className: \"framer-179ydqf\",\n                          name: \"Ellipse 21\",\n                          \"data-framer-name\": \"Ellipse 21\",\n                          \"data-border\": true\n                        }), /*#__PURE__*/_jsx(Image, {\n                          className: \"framer-cq6fl0\",\n                          name: \"image 15\",\n                          background: {\n                            src: new URL(\"https://framerusercontent.com/images/wD6EF85BYMyL1WS4oh5IvM2FE.png\").href,\n                            fit: \"fill\"\n                          },\n                          \"data-framer-name\": \"image 15\",\n                          alt: \"\"\n                        })]\n                      }), /*#__PURE__*/_jsx(Image, {\n                        className: \"framer-c98urv\",\n                        name: \"image 17\",\n                        background: {\n                          src: new URL(\"https://framerusercontent.com/images/gVo9DCay3GAW7qMLsxO4MF43hM.png\").href,\n                          srcSet: `${new URL(\"https://framerusercontent.com/images/gVo9DCay3GAW7qMLsxO4MF43hM.png?scale-down-to=512\").href} 512w, ${new URL(\"https://framerusercontent.com/images/gVo9DCay3GAW7qMLsxO4MF43hM.png?scale-down-to=1024\").href} 1024w, ${new URL(\"https://framerusercontent.com/images/gVo9DCay3GAW7qMLsxO4MF43hM.png?scale-down-to=2048\").href} 2048w, ${new URL(\"https://framerusercontent.com/images/gVo9DCay3GAW7qMLsxO4MF43hM.png\").href} 2491w`,\n                          sizes: \"18.88850212097168px\",\n                          fit: \"fill\"\n                        },\n                        \"data-framer-name\": \"image 17\",\n                        alt: \"\"\n                      })]\n                    })]\n                  })]\n                })\n              })\n            })\n          }), /*#__PURE__*/_jsx(PropertyOverrides, {\n            breakpoint: baseVariant,\n            overrides: {\n              llZCUywb0: {\n                transformTemplate: undefined,\n                background: {\n                  src: new URL(\"https://framerusercontent.com/images/HFwmW2ROZxCWlXu1TJ4jb1wTLkw.png?scale-down-to=4096\").href,\n                  pixelWidth: 4218,\n                  pixelHeight: 2575,\n                  intrinsicWidth: 4218,\n                  intrinsicHeight: 2575,\n                  fit: \"fill\"\n                }\n              }\n            },\n            children: /*#__PURE__*/_jsx(Image, {\n              className: \"framer-vendjj\",\n              background: {\n                src: new URL(\"https://framerusercontent.com/images/HFwmW2ROZxCWlXu1TJ4jb1wTLkw.png?scale-down-to=4096\").href,\n                pixelWidth: 4218,\n                pixelHeight: 2575,\n                intrinsicWidth: 4218,\n                intrinsicHeight: 2575,\n                fit: \"fill\"\n              },\n              alt: \"\"\n            })\n          }), /*#__PURE__*/_jsx(PropertyOverrides, {\n            breakpoint: baseVariant,\n            overrides: {\n              llZCUywb0: {\n                transformTemplate: (_, t) => `rotate(-11deg) ${t}`\n              }\n            },\n            children: /*#__PURE__*/_jsx(SVG, {\n              withExternalLayout: true,\n              intrinsicHeight: 1278,\n              intrinsicWidth: 2393,\n              className: \"framer-55yr4y\",\n              transformTemplate: (_, t) => `rotate(-11deg) ${t}`,\n              name: \"Group 63\",\n              fill: \"rgba(0,0,0,1)\",\n              \"data-framer-name\": \"Group 63\",\n              svg: '<svg width=\"2393\" height=\"1278\" viewBox=\"0 0 2393 1278\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M1754.54 401.59C1754.54 401.59 1715.65 482.65 1611.72 430.217C1507.79 377.629 1499.38 324.263 1300.08 375.762C1100.77 427.261 1028.42 424.15 985.794 365.027C943.163 305.904 862.725 223.91 692.825 232.623C522.77 241.336 435.33 39.2294 312.728 6.55634C190.126 -26.2723 101.442 74.8587 101.442 74.8587L217 997L2392.45 1115.42C2392.45 1115.42 2333.79 956.41 2202.48 908.022C2071.01 859.635 2089.83 826.962 2077.85 745.902C2065.72 664.841 1813.36 610.075 1830.94 491.052C1848.21 371.717 1754.54 401.59 1754.54 401.59Z\" fill=\"#0ED0F4\"/>\\n<path d=\"M140.961 90.262C155.12 82.3271 403.746 29.8946 482.006 177.546C560.266 325.197 642.882 326.909 768.44 335.933C893.998 344.957 856.035 346.824 995.751 426.017C1135.47 505.21 1217.46 463.98 1319.37 435.663C1421.12 407.347 1583.71 475.182 1713.63 416.215C1843.54 357.248 1848.83 454.022 1848.83 454.022C1848.83 454.022 1812.73 538.506 1917.75 597.628C2022.93 656.751 1971.28 724.898 2000.53 832.875C2029.78 941.007 2314.34 1101.11 2314.34 1101.11L88.8398 999.352L140.961 90.262Z\" fill=\"#00FFA3\"/>\\n<path d=\"M174.101 120.29C174.101 120.29 215.02 287.234 387.254 305.904C559.488 324.575 564.778 319.129 630.591 395.211C696.248 471.292 731.877 513.923 849.034 486.384C966.19 458.845 1069.19 393.81 1165.18 446.554C1261.03 499.298 1614.93 602.763 1834 395.211C2053.07 187.659 1962.5 599 1962.5 599L1943 625C2021.1 664.052 1974.7 862.125 2000.53 937.584C2026.2 1013.04 2236.71 1158.52 2236.71 1158.52C2236.71 1158.52 623.589 1276.14 613.009 1277.7C602.429 1279.25 0 987.371 0 987.371L174.101 120.29Z\" fill=\"#101921\"/>\\n</svg>\\n'\n            })\n          }), /*#__PURE__*/_jsx(PropertyOverrides, {\n            breakpoint: baseVariant,\n            overrides: {\n              llZCUywb0: {\n                transformTemplate: (_, t) => `translateX(-50%) ${t}`\n              }\n            },\n            children: /*#__PURE__*/_jsx(Container, {\n              className: \"framer-1tbczx0-container\",\n              transformTemplate: (_, t) => `translateX(-50%) ${t}`,\n              children: /*#__PURE__*/_jsx(PropertyOverrides, {\n                breakpoint: baseVariant,\n                overrides: {\n                  llZCUywb0: {\n                    variant: \"XGXvFO5Uw\",\n                    style: {\n                      width: \"100%\"\n                    }\n                  }\n                },\n                children: /*#__PURE__*/_jsx(PivotCenter, {\n                  width: \"100%\",\n                  height: \"100%\",\n                  layoutId: \"VTZjFouEj\",\n                  id: \"VTZjFouEj\",\n                  variant: \"XaNh_2Z73\",\n                  style: {\n                    width: \"100%\"\n                  }\n                })\n              })\n            })\n          }), /*#__PURE__*/_jsx(PropertyOverrides, {\n            breakpoint: baseVariant,\n            overrides: {\n              llZCUywb0: {\n                transformTemplate: (_, t) => `translateX(-50%) ${t}`\n              }\n            },\n            children: /*#__PURE__*/_jsx(Container, {\n              className: \"framer-14lnj5e-container\",\n              transformTemplate: (_, t) => `translateX(-50%) ${t}`,\n              children: /*#__PURE__*/_jsx(PropertyOverrides, {\n                breakpoint: baseVariant,\n                overrides: {\n                  llZCUywb0: {\n                    variant: \"V41pgHaRL\",\n                    style: {\n                      width: \"100%\"\n                    }\n                  }\n                },\n                children: /*#__PURE__*/_jsx(FooterSocial, {\n                  width: \"100%\",\n                  height: \"100%\",\n                  layoutId: \"WiNXbYyXM\",\n                  id: \"WiNXbYyXM\",\n                  variant: \"yIsIPtz6b\",\n                  style: {\n                    width: \"100%\"\n                  }\n                })\n              })\n            })\n          })]\n        }), /*#__PURE__*/_jsx(\"div\", {\n          id: \"overlay\"\n        })]\n      })\n    })\n  });\n});\nconst css = ['.framer-iuPTk [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none;}', \"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\", \".framer-iuPTk .framer-72rtr7 { position: relative; overflow: hidden; width: 1200px; height: 4285px; background-color: #000000; }\", \".framer-iuPTk .framer-yri3j9-container { position: fixed; z-index: 1; height: 80px; right: 10px; left: 10px; top: calc(7.125000000000021% - 80px / 2); flex: none; }\", \".framer-iuPTk .framer-1fkb0gb { position: absolute; overflow: visible; height: min-content; right: 0px; left: 0px; top: 697px; flex: none; background-color: #000000; }\", \".framer-iuPTk .framer-twu2y4, .framer-iuPTk .framer-14g5k85, .framer-iuPTk .framer-meigf5, .framer-iuPTk .framer-n2oqlt { position: relative; overflow: visible; max-width: 1000px; width: 1px; height: min-content; flex: 1 0 0px; }\", \".framer-iuPTk .framer-nlr3hy, .framer-iuPTk .framer-1aocenu { position: relative; overflow: visible; max-width: 740px; width: 476px; height: min-content; flex: none; }\", \".framer-iuPTk .framer-cv2acf, .framer-iuPTk .framer-lrc2dx, .framer-iuPTk .framer-lseb5u, .framer-iuPTk .framer-envxhw, .framer-iuPTk .framer-9xfltz { position: relative; width: 100%; height: auto; flex: none; white-space: pre-wrap; word-wrap: break-word; word-break: break-word; --framer-paragraph-spacing: 0px; --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; }\", \".framer-iuPTk .framer-zkl489, .framer-iuPTk .framer-1s72wbs { position: relative; overflow: hidden; max-width: 430px; width: 430px; height: 92px; flex: none; white-space: pre-wrap; word-wrap: break-word; word-break: break-word; --framer-paragraph-spacing: 0px; }\", \".framer-iuPTk .framer-wujre8 { position: relative; overflow: hidden; will-change: transform; width: 508px; height: 400px; flex: none; border-bottom-left-radius: 24px; border-bottom-right-radius: 24px; border-top-right-radius: 24px; border-top-left-radius: 24px; background: linear-gradient(227deg, #9FE99F 0%, #00FFA3 100%); }\", \".framer-iuPTk .framer-yu0oz9 { position: absolute; overflow: visible; width: 222px; height: 188px; left: 24px; top: -124px; flex: none; }\", \".framer-iuPTk .framer-d9fmfo, .framer-iuPTk .framer-ozs6ky { position: absolute; overflow: hidden; will-change: transform; right: 0px; bottom: 0px; left: 0px; top: 0px; flex: none; border-bottom-left-radius: 30px; border-bottom-right-radius: 30px; border-top-right-radius: 30px; border-top-left-radius: 30px; background-color: #000000; }\", '.framer-iuPTk .framer-1vczth8 { position: absolute; overflow: visible; width: auto; height: auto; left: 70px; top: 79px; flex: none; white-space: pre; --framer-font-family: \"Gilroy Bold\", serif; --framer-font-style: normal; --framer-font-weight: 400; --framer-text-color: #ffffff; --framer-font-size: 24px; --framer-letter-spacing: 0px; --framer-text-transform: none; --framer-text-decoration: none; --framer-line-height: 1.2em; --framer-text-alignment: center; }', \".framer-iuPTk .framer-1l4g7mh, .framer-iuPTk .framer-13rxxw4, .framer-iuPTk .framer-kbtj13, .framer-iuPTk .framer-hfvmmu, .framer-iuPTk .framer-d1ax13, .framer-iuPTk .framer-ypolfy { position: absolute; overflow: hidden; will-change: transform; width: 197px; height: var(--framer-aspect-ratio-supported, 43px); left: 12px; top: 133px; flex: none; aspect-ratio: 4.5813953488372094 / 1; border-bottom-left-radius: 30px; border-bottom-right-radius: 30px; border-top-right-radius: 30px; border-top-left-radius: 30px; background-color: #ffffff; }\", '.framer-iuPTk .framer-141cdqr { position: absolute; overflow: visible; width: auto; height: auto; left: 49px; top: 143px; flex: none; white-space: pre; --framer-font-family: \"Gilroy Bold\", serif; --framer-font-style: normal; --framer-font-weight: 400; --framer-text-color: #000000; --framer-font-size: 20px; --framer-letter-spacing: 0px; --framer-text-transform: capitalize; --framer-text-decoration: none; --framer-line-height: 1.2em; --framer-text-alignment: center; }', \".framer-iuPTk .framer-10ufxww { position: absolute; overflow: visible; width: 183px; height: 15px; left: 19px; top: 113px; flex: none; }\", \".framer-iuPTk .framer-6g16k6 { position: absolute; overflow: visible; width: 98px; height: 15px; left: 85px; top: 0px; flex: none; }\", '.framer-iuPTk .framer-1jw7kvn, .framer-iuPTk .framer-11bfya4 { position: absolute; overflow: visible; width: auto; height: auto; left: 15px; top: 0px; flex: none; white-space: pre; --framer-font-family: \"Gilroy Semibold\", serif; --framer-font-style: normal; --framer-font-weight: 400; --framer-text-color: #c4c4c4; --framer-font-size: 12px; --framer-letter-spacing: 0px; --framer-text-transform: none; --framer-text-decoration: none; --framer-line-height: 1.2em; --framer-text-alignment: center; }', \".framer-iuPTk .framer-59fuii, .framer-iuPTk .framer-109goft, .framer-iuPTk .framer-45o3lv { position: absolute; overflow: hidden; will-change: transform; width: 9px; height: var(--framer-aspect-ratio-supported, 9px); left: 0px; top: 2px; flex: none; aspect-ratio: 1 / 1; border-bottom-left-radius: 100%; border-bottom-right-radius: 100%; border-top-right-radius: 100%; border-top-left-radius: 100%; background-color: #c4c4c4; }\", \".framer-iuPTk .framer-clnm4l { position: absolute; overflow: visible; width: 75px; height: 15px; left: 0px; top: 0px; flex: none; }\", \".framer-iuPTk .framer-1keulvy, .framer-iuPTk .framer-ipxp1j, .framer-iuPTk .framer-b2hx49, .framer-iuPTk .framer-j8pkay, .framer-iuPTk .framer-1vjmk5z, .framer-iuPTk .framer-zsh0pn { position: absolute; overflow: hidden; will-change: transform; width: 9px; height: var(--framer-aspect-ratio-supported, 9px); left: 0px; top: 2px; flex: none; aspect-ratio: 1 / 1; border-bottom-left-radius: 100%; border-bottom-right-radius: 100%; border-top-right-radius: 100%; border-top-left-radius: 100%; background-color: #00ffa3; }\", \".framer-iuPTk .framer-1v2u6z2 { position: absolute; width: 73px; height: 52px; left: 74px; top: 22px; flex: none; }\", \".framer-iuPTk .framer-7bxr5g { position: absolute; overflow: visible; width: 222px; height: 188px; left: 262px; top: -75px; flex: none; }\", '.framer-iuPTk .framer-1rvsa1w { position: absolute; overflow: visible; width: auto; height: auto; left: 73px; top: 79px; flex: none; white-space: pre; --framer-font-family: \"Gilroy Extrabold\", serif; --framer-font-style: normal; --framer-font-weight: 400; --framer-text-color: #ffffff; --framer-font-size: 24px; --framer-letter-spacing: 0px; --framer-text-transform: none; --framer-text-decoration: none; --framer-line-height: 1.2em; --framer-text-alignment: center; }', '.framer-iuPTk .framer-jp69wf { position: absolute; overflow: visible; width: auto; height: auto; left: 73px; top: 143px; flex: none; white-space: pre; --framer-font-family: \"Gilroy Extrabold\", serif; --framer-font-style: normal; --framer-font-weight: 400; --framer-text-color: #000000; --framer-font-size: 20px; --framer-letter-spacing: 0px; --framer-text-transform: capitalize; --framer-text-decoration: none; --framer-line-height: 1.2em; --framer-text-alignment: center; }', \".framer-iuPTk .framer-ataa70 { position: absolute; overflow: visible; width: 167px; height: 15px; left: 19px; top: 113px; flex: none; }\", \".framer-iuPTk .framer-1k5fqa3 { position: absolute; overflow: visible; width: 82px; height: 15px; left: 85px; top: 0px; flex: none; }\", '.framer-iuPTk .framer-1blhvdi { position: absolute; overflow: visible; width: auto; height: auto; left: 17px; top: 0px; flex: none; white-space: pre; --framer-font-family: \"Gilroy Semibold\", serif; --framer-font-style: normal; --framer-font-weight: 400; --framer-text-color: #c4c4c4; --framer-font-size: 12px; --framer-letter-spacing: 0px; --framer-text-transform: none; --framer-text-decoration: none; --framer-line-height: 1.2em; --framer-text-alignment: left; }', \".framer-iuPTk .framer-1tiirps { position: absolute; overflow: visible; width: 58px; height: 15px; left: 0px; top: 0px; flex: none; }\", '.framer-iuPTk .framer-1nel1sb { position: absolute; overflow: visible; width: auto; height: auto; left: 21px; top: 0px; flex: none; white-space: pre; --framer-font-family: \"Gilroy Semibold\", serif; --framer-font-style: normal; --framer-font-weight: 400; --framer-text-color: #c4c4c4; --framer-font-size: 12px; --framer-letter-spacing: 0px; --framer-text-transform: none; --framer-text-decoration: none; --framer-line-height: 1.2em; --framer-text-alignment: left; }', \".framer-iuPTk .framer-98z7ix { position: absolute; right: 85px; bottom: 114px; left: 80px; top: 19px; flex: none; }\", \".framer-iuPTk .framer-1w9y4zv { position: absolute; overflow: visible; width: 222px; height: 188px; left: 24px; top: 30px; flex: none; }\", \".framer-iuPTk .framer-aklaxp, .framer-iuPTk .framer-4oihnb, .framer-iuPTk .framer-x7it3r, .framer-iuPTk .framer-pmmmah, .framer-iuPTk .framer-3qfsmv, .framer-iuPTk .framer-rilugp { position: absolute; overflow: hidden; will-change: transform; width: 222px; height: 188px; left: 0px; top: 0px; flex: none; border-bottom-left-radius: 30px; border-bottom-right-radius: 30px; border-top-right-radius: 30px; border-top-left-radius: 30px; background-color: #000000; }\", '.framer-iuPTk .framer-o6708 { position: absolute; overflow: visible; width: auto; height: auto; left: 77px; top: 79px; flex: none; white-space: pre; --framer-font-family: \"Gilroy Extrabold\", serif; --framer-font-style: normal; --framer-font-weight: 400; --framer-text-color: #ffffff; --framer-font-size: 24px; --framer-letter-spacing: 0px; --framer-text-transform: none; --framer-text-decoration: none; --framer-line-height: 1.2em; --framer-text-alignment: center; }', '.framer-iuPTk .framer-zdica0, .framer-iuPTk .framer-1a7arim { position: absolute; overflow: visible; width: auto; height: auto; left: 61px; top: 143px; flex: none; white-space: pre; --framer-font-family: \"Gilroy Extrabold\", serif; --framer-font-style: normal; --framer-font-weight: 400; --framer-text-color: #000000; --framer-font-size: 20px; --framer-letter-spacing: 0px; --framer-text-transform: capitalize; --framer-text-decoration: none; --framer-line-height: 1.2em; --framer-text-alignment: center; }', \".framer-iuPTk .framer-1dd2ph { position: absolute; overflow: visible; width: 71px; height: 15px; left: 75px; top: 113px; flex: none; }\", \".framer-iuPTk .framer-1rn912 { position: absolute; overflow: visible; width: 71px; height: 15px; left: 0px; top: 0px; flex: none; }\", '.framer-iuPTk .framer-71gvju { position: absolute; overflow: visible; width: auto; height: auto; left: 19px; top: 0px; flex: none; white-space: pre; --framer-font-family: \"Gilroy Semibold\", serif; --framer-font-style: normal; --framer-font-weight: 400; --framer-text-color: #c4c4c4; --framer-font-size: 12px; --framer-letter-spacing: 0px; --framer-text-transform: none; --framer-text-decoration: none; --framer-line-height: 1.2em; --framer-text-alignment: center; }', \".framer-iuPTk .framer-10oe0u8 { position: absolute; width: 64px; height: 64px; left: 79px; top: 15px; flex: none; }\", \".framer-iuPTk .framer-1byawzm { position: absolute; overflow: visible; width: 222px; height: 188px; left: 262px; top: 77px; flex: none; }\", '.framer-iuPTk .framer-wtd9e2 { position: absolute; overflow: visible; width: auto; height: auto; left: 62px; top: 79px; flex: none; white-space: pre; --framer-font-family: \"Gilroy Extrabold\", serif; --framer-font-style: normal; --framer-font-weight: 400; --framer-text-color: #ffffff; --framer-font-size: 24px; --framer-letter-spacing: 0px; --framer-text-transform: none; --framer-text-decoration: none; --framer-line-height: 1.2em; --framer-text-alignment: center; }', '.framer-iuPTk .framer-165m4gs { position: absolute; overflow: visible; width: auto; height: auto; left: 49px; top: 143px; flex: none; white-space: pre; --framer-font-family: \"Gilroy Extrabold\", serif; --framer-font-style: normal; --framer-font-weight: 400; --framer-text-color: #000000; --framer-font-size: 20px; --framer-letter-spacing: 0px; --framer-text-transform: capitalize; --framer-text-decoration: none; --framer-line-height: 1.2em; --framer-text-alignment: center; }', \".framer-iuPTk .framer-1bkt4wq { position: absolute; overflow: visible; width: 128px; height: 15px; left: 46px; top: 113px; flex: none; }\", \".framer-iuPTk .framer-1ksysmb { position: absolute; overflow: visible; width: 128px; height: 15px; left: 0px; top: 0px; flex: none; }\", '.framer-iuPTk .framer-17mt5sp, .framer-iuPTk .framer-16vsfch { position: absolute; overflow: visible; width: auto; height: auto; left: 14px; top: 0px; flex: none; white-space: pre; --framer-font-family: \"Gilroy Semibold\", serif; --framer-font-style: normal; --framer-font-weight: 400; --framer-text-color: #c4c4c4; --framer-font-size: 12px; --framer-letter-spacing: 0px; --framer-text-transform: none; --framer-text-decoration: none; --framer-line-height: 1.2em; --framer-text-alignment: center; }', \".framer-iuPTk .framer-1nhcyfn { position: absolute; overflow: hidden; width: 48px; height: var(--framer-aspect-ratio-supported, 59px); left: 93px; top: 17px; flex: none; aspect-ratio: 0.8135593220338984 / 1; }\", \".framer-iuPTk .framer-72sv2a { position: absolute; overflow: visible; width: 222px; height: 188px; bottom: 27px; left: 24px; flex: none; }\", '.framer-iuPTk .framer-qp0ky0 { position: absolute; overflow: visible; width: auto; height: auto; left: 59px; top: 79px; flex: none; white-space: pre; --framer-font-family: \"Gilroy Extrabold\", serif; --framer-font-style: normal; --framer-font-weight: 400; --framer-text-color: #ffffff; --framer-font-size: 24px; --framer-letter-spacing: 0px; --framer-text-transform: none; --framer-text-decoration: none; --framer-line-height: 1.2em; --framer-text-alignment: center; }', '.framer-iuPTk .framer-15qv3hw { position: absolute; overflow: visible; width: auto; height: auto; left: 40px; top: 143px; flex: none; white-space: pre; --framer-font-family: \"Gilroy Extrabold\", serif; --framer-font-style: normal; --framer-font-weight: 400; --framer-text-color: #000000; --framer-font-size: 20px; --framer-letter-spacing: 0px; --framer-text-transform: capitalize; --framer-text-decoration: none; --framer-line-height: 1.2em; --framer-text-alignment: center; }', \".framer-iuPTk .framer-govr81 { position: absolute; width: 50px; height: 60px; left: 88px; top: 17px; flex: none; }\", \".framer-iuPTk .framer-1un89sx { position: absolute; overflow: visible; width: 180px; height: 15px; left: 19px; top: 113px; flex: none; }\", \".framer-iuPTk .framer-nljote { position: absolute; overflow: visible; width: 95px; height: 15px; left: 85px; top: 0px; flex: none; }\", '.framer-iuPTk .framer-6gr3oi { position: absolute; overflow: visible; width: auto; height: auto; left: 17px; top: 0px; flex: none; white-space: pre; --framer-font-family: \"Gilroy Semibold\", serif; --framer-font-style: normal; --framer-font-weight: 400; --framer-text-color: #c4c4c4; --framer-font-size: 12px; --framer-letter-spacing: 0px; --framer-text-transform: none; --framer-text-decoration: none; --framer-line-height: 1.2em; --framer-text-alignment: center; }', \".framer-iuPTk .framer-1iphtj8 { position: absolute; overflow: visible; width: 69px; height: 15px; left: 0px; top: 0px; flex: none; }\", '.framer-iuPTk .framer-10nwtbs { position: absolute; overflow: visible; width: auto; height: auto; left: 21px; top: 0px; flex: none; white-space: pre; --framer-font-family: \"Gilroy Semibold\", serif; --framer-font-style: normal; --framer-font-weight: 400; --framer-text-color: #c4c4c4; --framer-font-size: 12px; --framer-letter-spacing: 0px; --framer-text-transform: none; --framer-text-decoration: none; --framer-line-height: 1.2em; --framer-text-alignment: center; }', \".framer-iuPTk .framer-8j5ll0 { position: absolute; overflow: visible; width: 222px; height: 188px; bottom: -20px; left: 262px; flex: none; }\", '.framer-iuPTk .framer-1hkmxtd { position: absolute; overflow: visible; width: auto; height: auto; left: 79px; top: 79px; flex: none; white-space: pre; --framer-font-family: \"Gilroy Extrabold\", serif; --framer-font-style: normal; --framer-font-weight: 400; --framer-text-color: #ffffff; --framer-font-size: 24px; --framer-letter-spacing: 0px; --framer-text-transform: none; --framer-text-decoration: none; --framer-line-height: 1.2em; --framer-text-alignment: center; }', \".framer-iuPTk .framer-2zffek { position: absolute; overflow: visible; width: 57px; height: 15px; left: 82px; top: 113px; flex: none; }\", \".framer-iuPTk .framer-1pjqeyb { position: absolute; overflow: visible; width: 45px; height: 60px; left: 88px; top: 16px; flex: none; }\", \".framer-iuPTk .framer-mwg39j { position: absolute; overflow: hidden; will-change: transform; width: 45px; height: 41px; left: 0px; top: 0px; flex: none; border-bottom-left-radius: 100%; border-bottom-right-radius: 100%; border-top-right-radius: 100%; border-top-left-radius: 100%; background-color: #c4c4c4; }\", \".framer-iuPTk .framer-ukrwcs { position: absolute; overflow: hidden; width: 45px; height: 41px; left: 0px; top: 19px; flex: none; background-color: #c4c4c4; }\", \".framer-iuPTk .framer-17v8myx { position: absolute; overflow: visible; height: min-content; right: 0px; left: 0px; top: 97px; flex: none; background-color: #000000; }\", \".framer-iuPTk .framer-gbdrko { position: relative; overflow: visible; max-width: 740px; width: 629px; height: min-content; flex: none; }\", \".framer-iuPTk .framer-cyoib6 { position: relative; overflow: hidden; max-width: 600px; width: 600px; height: 92px; flex: none; white-space: pre-wrap; word-wrap: break-word; word-break: break-word; --framer-paragraph-spacing: 0px; }\", \".framer-iuPTk .framer-1hkxemu-container { position: relative; width: 100%; height: 1px; flex: 1 0 0px; }\", \".framer-iuPTk .framer-1v6cn14 { position: relative; overflow: hidden; will-change: transform; width: 508px; height: 400px; flex: none; border-bottom-left-radius: 24px; border-bottom-right-radius: 24px; border-top-right-radius: 24px; border-top-left-radius: 24px; background-color: rgba(153, 238, 255, 0); }\", \".framer-iuPTk .framer-pheg5j-container { position: absolute; height: 182px; right: 98px; left: 0px; top: 111px; flex: none; transform: rotate(27deg); }\", \".framer-iuPTk .framer-19wchqy-container { position: absolute; width: 674px; height: 405px; left: calc(48.75000000000002% - 674px / 2); top: calc(68.28471411901987% - 405px / 2); flex: none; }\", \".framer-iuPTk .framer-tn7vw6 { position: absolute; overflow: visible; width: 200px; height: 320px; left: calc(73.41666666666669% - 200px / 2); top: calc(68.26137689614939% - 320px / 2); flex: none; border-bottom-left-radius: 24px; border-bottom-right-radius: 24px; border-top-right-radius: 24px; border-top-left-radius: 24px; background: linear-gradient(0deg, #0ED0F4 0%, #1480c8 100%); }\", \".framer-iuPTk .framer-15jp3au { position: absolute; width: auto; height: auto; bottom: 28px; left: 25px; flex: none; white-space: pre; text-shadow: 0px 0px 10px #ffffff; --framer-paragraph-spacing: 0px; --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; }\", \".framer-iuPTk .framer-1p26ba8 { position: absolute; overflow: visible; width: 200px; height: 320px; left: calc(73.41666666666669% - 200px / 2); top: calc(68.26137689614939% - 320px / 2); flex: none; transform: rotate(10deg); border-bottom-left-radius: 24px; border-bottom-right-radius: 24px; border-top-right-radius: 24px; border-top-left-radius: 24px; background: linear-gradient(0deg, #0ED0F4 0%, #1480c8 100%); }\", \".framer-iuPTk .framer-vmzdff { position: absolute; width: auto; height: auto; bottom: 46px; left: 25px; flex: none; white-space: pre; text-shadow: 0px 0px 10px #ffffff; --framer-paragraph-spacing: 0px; --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; }\", \".framer-iuPTk .framer-1f18v0x { position: absolute; overflow: visible; width: 200px; height: 320px; left: calc(73.41666666666669% - 200px / 2); top: calc(68.26137689614939% - 320px / 2); flex: none; transform: rotate(20deg); border-bottom-left-radius: 24px; border-bottom-right-radius: 24px; border-top-right-radius: 24px; border-top-left-radius: 24px; background: linear-gradient(2deg, #0ED0F4 0%, #1480c8 100%); }\", \".framer-iuPTk .framer-udy8d1 { position: absolute; width: auto; height: auto; bottom: 16px; left: 25px; flex: none; white-space: pre; text-shadow: 0px 0px 10px #ffffff; --framer-paragraph-spacing: 0px; --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; }\", \".framer-iuPTk .framer-zt33yn { position: absolute; overflow: visible; width: 200px; height: 320px; left: calc(73.41666666666669% - 200px / 2); top: calc(68.26137689614939% - 320px / 2); flex: none; transform: rotate(30deg); border-bottom-left-radius: 24px; border-bottom-right-radius: 24px; border-top-right-radius: 24px; border-top-left-radius: 24px; background: linear-gradient(0deg, #0ED0F4 0%, #1480c8 100%); }\", \".framer-iuPTk .framer-1rboma6 { position: absolute; width: auto; height: auto; bottom: 30px; left: 25px; flex: none; white-space: pre; text-shadow: 0px 0px 10px #ffffff; --framer-paragraph-spacing: 0px; --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; }\", \".framer-iuPTk .framer-1n7nckk { position: absolute; overflow: visible; width: 222px; height: 188px; left: calc(22.00000000000002% - 222px / 2); top: calc(68.26137689614939% - 188px / 2); flex: none; }\", \".framer-iuPTk .framer-nv2006 { position: absolute; overflow: visible; width: auto; height: auto; left: 49%; top: 52%; flex: none; transform: translate(-50%, -50%); white-space: pre; --framer-paragraph-spacing: 0px; }\", \".framer-iuPTk .framer-qfx75q { position: absolute; overflow: visible; width: auto; height: auto; bottom: 63px; left: 49%; flex: none; transform: translateX(-50%); white-space: pre; --framer-paragraph-spacing: 0px; }\", \".framer-iuPTk .framer-1c8gvp9 { position: absolute; overflow: hidden; will-change: transform; width: 197px; height: var(--framer-aspect-ratio-supported, 43px); left: 12px; top: 133px; flex: none; aspect-ratio: 4.5813953488372094 / 1; border-bottom-left-radius: 30px; border-bottom-right-radius: 30px; border-top-right-radius: 30px; border-top-left-radius: 30px; background-color: #00ffa3; }\", \".framer-iuPTk .framer-1p6vq5w { position: absolute; overflow: visible; width: auto; height: auto; left: 50%; top: 51%; flex: none; transform: translate(-50%, -50%); white-space: pre; --framer-paragraph-spacing: 0px; }\", \".framer-iuPTk .framer-1b1khrf { position: absolute; width: 57px; height: 55px; left: calc(48.648648648648674% - 57px / 2); top: calc(24.468085106383% - 55px / 2); flex: none; }\", \".framer-iuPTk .framer-3tpvkh { position: absolute; width: 664px; height: auto; left: 49%; top: 2550px; flex: none; transform: translateX(-50%); white-space: pre-wrap; word-wrap: break-word; word-break: break-word; --framer-paragraph-spacing: 0px; --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; }\", \".framer-iuPTk .framer-12vv41o { position: absolute; overflow: visible; height: min-content; right: 0px; left: 0px; top: 1297px; flex: none; background-color: #000000; }\", \".framer-iuPTk .framer-rh53kf { position: relative; overflow: visible; max-width: 740px; width: 306px; height: min-content; flex: none; }\", \".framer-iuPTk .framer-1vhkw6h, .framer-iuPTk .framer-1gc2cdt { position: relative; overflow: hidden; max-width: 430px; width: 100%; height: auto; flex: none; white-space: pre-wrap; word-wrap: break-word; word-break: break-word; --framer-paragraph-spacing: 0px; }\", \".framer-iuPTk .framer-kv4u07 { position: relative; overflow: hidden; will-change: transform; width: 508px; height: 400px; flex: none; border-bottom-left-radius: 24px; border-bottom-right-radius: 24px; border-top-right-radius: 24px; border-top-left-radius: 24px; background: linear-gradient(227deg, #FF7477 0%, #DF1515 100%); }\", \".framer-iuPTk .framer-17d02g8 { position: absolute; overflow: visible; width: 485px; height: 119px; right: -26px; top: -52px; flex: none; }\", \".framer-iuPTk .framer-xrt7pu, .framer-iuPTk .framer-3r3jvv, .framer-iuPTk .framer-mwssyt, .framer-iuPTk .framer-1ltwzxf, .framer-iuPTk .framer-1p05jz4 { position: absolute; overflow: hidden; will-change: transform; width: 588px; height: 150px; left: 0px; top: 0px; flex: none; border-bottom-left-radius: 30px; border-bottom-right-radius: 30px; border-top-right-radius: 30px; border-top-left-radius: 30px; background-color: #000000; }\", \".framer-iuPTk .framer-12s74dm, .framer-iuPTk .framer-1yvmfai, .framer-iuPTk .framer-v9c4pd, .framer-iuPTk .framer-18p4hl0, .framer-iuPTk .framer-17b8zk8 { position: absolute; overflow: visible; width: 110px; height: min-content; left: 448px; top: 25px; flex: none; border-bottom-left-radius: 30px; border-bottom-right-radius: 30px; border-top-right-radius: 30px; border-top-left-radius: 30px; background-color: #ffffff; }\", '.framer-iuPTk .framer-1qs15n5, .framer-iuPTk .framer-p10vli, .framer-iuPTk .framer-nu1tfi, .framer-iuPTk .framer-tgbtny { position: relative; overflow: visible; width: auto; height: auto; flex: none; white-space: pre; --framer-font-family: \"Gilroy Extrabold\", serif; --framer-font-style: normal; --framer-font-weight: 400; --framer-text-color: #000000; --framer-font-size: 20px; --framer-letter-spacing: 0px; --framer-text-transform: capitalize; --framer-text-decoration: none; --framer-line-height: 1.2em; --framer-text-alignment: center; }', \".framer-iuPTk .framer-1a99zbw, .framer-iuPTk .framer-8ftc86, .framer-iuPTk .framer-ufsu0r, .framer-iuPTk .framer-kpstih { position: absolute; overflow: visible; width: min-content; height: min-content; left: 127px; top: 107px; flex: none; border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-right-radius: 8px; border-top-left-radius: 8px; background-color: #ffffff; }\", \".framer-iuPTk .framer-13qd38o, .framer-iuPTk .framer-j7eoc3, .framer-iuPTk .framer-7rfu7g, .framer-iuPTk .framer-1egiqh7, .framer-iuPTk .framer-ogdhye, .framer-iuPTk .framer-1hl6k0k, .framer-iuPTk .framer-1x4gbql, .framer-iuPTk .framer-1fhcno2, .framer-iuPTk .framer-nmelf, .framer-iuPTk .framer-yxdqb2 { position: relative; overflow: visible; width: auto; height: auto; flex: none; white-space: pre; --framer-paragraph-spacing: 0px; }\", \".framer-iuPTk .framer-178cns7, .framer-iuPTk .framer-13o4ea7, .framer-iuPTk .framer-os1wr2, .framer-iuPTk .framer-fv7c4b { position: absolute; overflow: visible; width: min-content; height: min-content; left: 199px; top: 106px; flex: none; border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-right-radius: 8px; border-top-left-radius: 8px; background-color: #ffffff; }\", \".framer-iuPTk .framer-1xei9su, .framer-iuPTk .framer-klkb22 { position: absolute; overflow: visible; width: auto; height: auto; left: 24px; top: 20px; flex: none; white-space: pre; --framer-paragraph-spacing: 0px; }\", \".framer-iuPTk .framer-r1ujy, .framer-iuPTk .framer-1oam7q5, .framer-iuPTk .framer-gxjm2n, .framer-iuPTk .framer-d46yf0, .framer-iuPTk .framer-2u0631 { position: absolute; overflow: visible; width: min-content; height: min-content; left: 24px; top: 107px; flex: none; border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-right-radius: 8px; border-top-left-radius: 8px; background-color: #ffffff; }\", \".framer-iuPTk .framer-12gmhy8, .framer-iuPTk .framer-1kmakak, .framer-iuPTk .framer-1rryj7j { position: absolute; overflow: visible; width: 47px; height: 25px; left: 479px; top: 35px; flex: none; }\", '.framer-iuPTk .framer-qiwr2n, .framer-iuPTk .framer-1447bnw { position: absolute; overflow: visible; width: auto; height: auto; left: 0px; top: 0px; flex: none; white-space: pre; --framer-font-family: \"Gilroy\", serif; --framer-font-style: normal; --framer-font-weight: 800; --framer-text-color: #000000; --framer-font-size: 20px; --framer-letter-spacing: 0px; --framer-text-transform: capitalize; --framer-text-decoration: none; --framer-line-height: 1.2em; --framer-text-alignment: center; }', \".framer-iuPTk .framer-69pwot, .framer-iuPTk .framer-1hscfnp, .framer-iuPTk .framer-fh732x, .framer-iuPTk .framer-1vc5rou, .framer-iuPTk .framer-1v7rvcz { position: absolute; overflow: visible; width: 304px; height: 43px; left: 260px; top: 86px; flex: none; }\", \".framer-iuPTk .framer-pvowp7, .framer-iuPTk .framer-v3rorp, .framer-iuPTk .framer-y628o2, .framer-iuPTk .framer-950mep, .framer-iuPTk .framer-17vvve5 { position: absolute; overflow: hidden; will-change: transform; width: 304px; height: var(--framer-aspect-ratio-supported, 43px); left: 0px; top: 0px; flex: none; aspect-ratio: 7.069767441860465 / 1; border-bottom-left-radius: 30px; border-bottom-right-radius: 30px; border-top-right-radius: 30px; border-top-left-radius: 30px; background-color: #ffffff; }\", \".framer-iuPTk .framer-19ljfg1, .framer-iuPTk .framer-ynd1nb, .framer-iuPTk .framer-ntl0h8, .framer-iuPTk .framer-1lfdqhp, .framer-iuPTk .framer-i5k946 { position: absolute; overflow: visible; width: 110px; height: min-content; left: 188px; top: 3px; flex: none; border-bottom-left-radius: 30px; border-bottom-right-radius: 30px; border-top-right-radius: 30px; border-top-left-radius: 30px; background-color: #00ffa3; }\", \".framer-iuPTk .framer-17b89s6, .framer-iuPTk .framer-k4qm0g, .framer-iuPTk .framer-1bsz8zf { position: absolute; overflow: visible; width: auto; height: auto; left: 22px; top: 11px; flex: none; white-space: pre; --framer-paragraph-spacing: 0px; }\", \".framer-iuPTk .framer-1r5rjr5, .framer-iuPTk .framer-qqzeex { position: absolute; overflow: visible; width: 126px; height: 40px; left: 282px; top: 25px; flex: none; }\", '.framer-iuPTk .framer-p6ey39 { position: absolute; overflow: visible; width: auto; height: auto; left: 0px; top: 0px; flex: none; white-space: pre; --framer-font-family: \"Gilroy Semibold\", serif; --framer-font-style: normal; --framer-font-weight: 400; --framer-text-color: #ff7477; --framer-font-size: 15px; --framer-letter-spacing: 0px; --framer-text-transform: none; --framer-text-decoration: none; --framer-line-height: 1.2em; --framer-text-alignment: center; }', \".framer-iuPTk .framer-1anezxj, .framer-iuPTk .framer-1vp5pve { position: absolute; overflow: visible; width: auto; height: auto; left: 0px; top: 22px; flex: none; white-space: pre; --framer-paragraph-spacing: 0px; }\", \".framer-iuPTk .framer-6x4tdx { position: absolute; overflow: visible; width: 588px; height: 150px; left: -138px; top: 67px; flex: none; }\", '.framer-iuPTk .framer-uopy1r, .framer-iuPTk .framer-1w10tyg, .framer-iuPTk .framer-1x9ssgr, .framer-iuPTk .framer-1td4nuy { position: relative; overflow: visible; width: auto; height: auto; flex: none; white-space: pre; --framer-font-family: \"Gilroy Semibold\", serif; --framer-font-style: normal; --framer-font-weight: 400; --framer-text-color: #000000; --framer-font-size: 15px; --framer-letter-spacing: 0px; --framer-text-transform: none; --framer-text-decoration: none; --framer-line-height: 1.2em; --framer-text-alignment: center; }', '.framer-iuPTk .framer-ta02ts, .framer-iuPTk .framer-78av6b { position: absolute; overflow: visible; width: auto; height: auto; left: 24px; top: 20px; flex: none; white-space: pre; --framer-font-family: \"Gilroy\", serif; --framer-font-style: normal; --framer-font-weight: 700; --framer-text-color: #ffffff; --framer-font-size: 30px; --framer-letter-spacing: 0px; --framer-text-transform: none; --framer-text-decoration: none; --framer-line-height: 1.2em; --framer-text-alignment: left; }', '.framer-iuPTk .framer-1c73xb6, .framer-iuPTk .framer-ly9vv7, .framer-iuPTk .framer-jp4w4r, .framer-iuPTk .framer-17s6qfg { position: relative; overflow: visible; width: auto; height: auto; flex: none; white-space: pre; --framer-font-family: \"Gilroy\", serif; --framer-font-style: normal; --framer-font-weight: 600; --framer-text-color: #000000; --framer-font-size: 15px; --framer-letter-spacing: 0px; --framer-text-transform: none; --framer-text-decoration: none; --framer-line-height: 1.2em; --framer-text-alignment: center; }', \".framer-iuPTk .framer-1g22s7p, .framer-iuPTk .framer-1gy09br, .framer-iuPTk .framer-1ckf5bi { position: absolute; overflow: visible; width: 126px; height: 41px; left: 282px; top: 25px; flex: none; }\", \".framer-iuPTk .framer-10hflij, .framer-iuPTk .framer-10wnaan, .framer-iuPTk .framer-1yerqc4 { position: absolute; overflow: visible; width: auto; height: auto; left: 0px; top: 0px; flex: none; white-space: pre; --framer-paragraph-spacing: 0px; }\", \".framer-iuPTk .framer-15xbf57, .framer-iuPTk .framer-lz2ppl { position: absolute; overflow: visible; width: auto; height: auto; left: 0px; top: 23px; flex: none; white-space: pre; --framer-paragraph-spacing: 0px; }\", \".framer-iuPTk .framer-bxkykl { position: absolute; overflow: visible; height: 150px; right: -80px; bottom: 65px; left: 0px; flex: none; }\", \".framer-iuPTk .framer-14ro8xe { position: absolute; overflow: visible; width: min-content; height: min-content; left: 122px; top: 107px; flex: none; border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-right-radius: 8px; border-top-left-radius: 8px; background-color: #ffffff; }\", \".framer-iuPTk .framer-1ecfqha { position: absolute; overflow: visible; width: min-content; height: min-content; left: 204px; top: 107px; flex: none; border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-right-radius: 8px; border-top-left-radius: 8px; background-color: #ffffff; }\", \".framer-iuPTk .framer-qwbzjh { position: absolute; overflow: visible; width: 588px; height: 150px; bottom: -54px; left: -172px; flex: none; }\", '.framer-iuPTk .framer-1h4x3no { position: absolute; overflow: visible; width: auto; height: auto; left: 24px; top: 20px; flex: none; white-space: pre; --framer-font-family: \"Gilroy Semibold\", serif; --framer-font-style: normal; --framer-font-weight: 400; --framer-text-color: #ffffff; --framer-font-size: 30px; --framer-letter-spacing: 0px; --framer-text-transform: none; --framer-text-decoration: none; --framer-line-height: 1.2em; --framer-text-alignment: left; }', \".framer-iuPTk .framer-1hs0dt3 { position: absolute; overflow: visible; width: 47px; height: 25px; left: 479px; top: 36px; flex: none; }\", '.framer-iuPTk .framer-1tvdqwe, .framer-iuPTk .framer-1090jtk, .framer-iuPTk .framer-1knmdlx { position: relative; overflow: visible; width: auto; height: auto; flex: none; white-space: pre; --framer-font-family: \"Gilroy\", serif; --framer-font-style: normal; --framer-font-weight: 800; --framer-text-color: #000000; --framer-font-size: 20px; --framer-letter-spacing: 0px; --framer-text-transform: capitalize; --framer-text-decoration: none; --framer-line-height: 1.2em; --framer-text-alignment: center; }', '.framer-iuPTk .framer-mwpdhg { position: absolute; overflow: visible; width: auto; height: auto; left: 22px; top: 11px; flex: none; white-space: pre; --framer-font-family: \"Gilroy Semibold\", serif; --framer-font-style: normal; --framer-font-weight: 400; --framer-text-color: #a3a7a9; --framer-font-size: 20px; --framer-letter-spacing: 0px; --framer-text-transform: none; --framer-text-decoration: none; --framer-line-height: 1.2em; --framer-text-alignment: center; }', \".framer-iuPTk .framer-10vlaud { position: absolute; overflow: visible; width: 588px; height: 150px; right: -111px; bottom: -154px; flex: none; }\", '.framer-iuPTk .framer-1m21icl { position: absolute; overflow: visible; width: auto; height: auto; left: 22px; top: 11px; flex: none; white-space: pre; --framer-font-family: \"Gilroy\", serif; --framer-font-style: normal; --framer-font-weight: 800; --framer-text-color: #a3a7a9; --framer-font-size: 20px; --framer-letter-spacing: 0px; --framer-text-transform: none; --framer-text-decoration: none; --framer-line-height: 1.2em; --framer-text-alignment: center; }', '.framer-iuPTk .framer-r7wbcv { position: absolute; overflow: visible; width: auto; height: auto; left: 0px; top: 0px; flex: none; white-space: pre; --framer-font-family: \"Gilroy\", serif; --framer-font-style: normal; --framer-font-weight: 600; --framer-text-color: #ff7477; --framer-font-size: 15px; --framer-letter-spacing: 0px; --framer-text-transform: none; --framer-text-decoration: none; --framer-line-height: 1.2em; --framer-text-alignment: left; }', '.framer-iuPTk .framer-g4atls { position: absolute; overflow: visible; width: auto; height: auto; left: 0px; top: 23px; flex: none; white-space: pre; --framer-font-family: \"Gilroy\", serif; --framer-font-style: normal; --framer-font-weight: 600; --framer-text-color: #00ffa3; --framer-font-size: 15px; --framer-letter-spacing: 0px; --framer-text-transform: none; --framer-text-decoration: none; --framer-line-height: 1.2em; --framer-text-alignment: left; }', \".framer-iuPTk .framer-1jndf2t { position: relative; overflow: visible; max-width: 740px; width: 450px; height: min-content; flex: none; }\", \".framer-iuPTk .framer-bab3qo { position: absolute; overflow: visible; height: min-content; right: 0px; left: 0px; top: 1897px; flex: none; background-color: #000000; }\", \".framer-iuPTk .framer-1qlckw1 { position: relative; overflow: hidden; will-change: transform; width: 508px; height: 400px; flex: none; border-bottom-left-radius: 24px; border-bottom-right-radius: 24px; border-top-right-radius: 24px; border-top-left-radius: 24px; background: linear-gradient(227deg, #B28AF2 0%, #3B1FA5 100%); }\", \".framer-iuPTk .framer-4nw896 { position: absolute; overflow: visible; width: 417px; height: 222px; left: -25px; top: -315px; flex: none; }\", \".framer-iuPTk .framer-1jopbgv, .framer-iuPTk .framer-1vci7ac, .framer-iuPTk .framer-udzyja, .framer-iuPTk .framer-101vckf, .framer-iuPTk .framer-1y0o3b2 { position: absolute; overflow: hidden; will-change: transform; width: 417px; height: 222px; left: 0px; top: 0px; flex: none; border-bottom-left-radius: 30px; border-bottom-right-radius: 30px; border-top-right-radius: 30px; border-top-left-radius: 30px; background-color: #000000; }\", \".framer-iuPTk .framer-193k9do, .framer-iuPTk .framer-uhritk, .framer-iuPTk .framer-lvl2rd, .framer-iuPTk .framer-yxw7zu { position: absolute; overflow: hidden; will-change: transform; width: 394px; height: var(--framer-aspect-ratio-supported, 83px); left: 15px; top: 16px; flex: none; aspect-ratio: 4.729761255396021 / 1; border-bottom-left-radius: 30px; border-bottom-right-radius: 30px; border-top-right-radius: 30px; border-top-left-radius: 30px; }\", \".framer-iuPTk .framer-k2sq3u, .framer-iuPTk .framer-pzqs57, .framer-iuPTk .framer-zqttzp, .framer-iuPTk .framer-11nwrk4, .framer-iuPTk .framer-12xubex { position: absolute; width: 19px; height: 16px; left: 123px; top: 106px; flex: none; }\", '.framer-iuPTk .framer-pfdcsk, .framer-iuPTk .framer-zanv98, .framer-iuPTk .framer-o8p7w5, .framer-iuPTk .framer-18bu1hr { position: absolute; overflow: hidden; width: 209px; height: 33px; left: 23px; top: 149px; flex: none; white-space: pre-wrap; word-wrap: break-word; word-break: break-word; --framer-font-family: \"Gilroy Extrabold\", serif; --framer-font-style: normal; --framer-font-weight: 400; --framer-text-color: #c035fb; --framer-font-size: 20px; --framer-letter-spacing: 0px; --framer-text-transform: none; --framer-text-decoration: none; --framer-line-height: 1.2em; --framer-text-alignment: left; }', '.framer-iuPTk .framer-1vh7g0q { position: absolute; overflow: hidden; width: 213px; height: 46px; left: 16px; top: 169px; flex: none; white-space: pre-wrap; word-wrap: break-word; word-break: break-word; --framer-font-family: \"Gilroy Semibold\", serif; --framer-font-style: normal; --framer-font-weight: 400; --framer-text-color: #ffffff; --framer-font-size: 10px; --framer-letter-spacing: 0px; --framer-text-transform: none; --framer-text-decoration: none; --framer-line-height: 1.2em; --framer-text-alignment: left; }', \".framer-iuPTk .framer-1wpk8u3, .framer-iuPTk .framer-iqzhse, .framer-iuPTk .framer-5ynei3, .framer-iuPTk .framer-ni6yy2 { position: absolute; overflow: visible; width: 69px; height: 80px; left: 333px; top: 118px; flex: none; }\", \".framer-iuPTk .framer-18c6pvy, .framer-iuPTk .framer-19hy6oy, .framer-iuPTk .framer-24yznz, .framer-iuPTk .framer-18dx3ub, .framer-iuPTk .framer-190244d { position: absolute; overflow: hidden; will-change: transform; width: 69px; height: 21px; left: 0px; top: 59px; flex: none; border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-right-radius: 10px; border-top-left-radius: 10px; background-color: #000000; --border-bottom-width: 1px; --border-top-width: 1px; --border-right-width: 1px; --border-left-width: 1px; --border-style: solid; --border-color: #b9bbbe; }\", \".framer-iuPTk .framer-acrcq4, .framer-iuPTk .framer-rs4yq5, .framer-iuPTk .framer-1iyke2s, .framer-iuPTk .framer-jtylcs, .framer-iuPTk .framer-z5grcg { position: absolute; overflow: hidden; will-change: transform; width: 69px; height: 21px; left: 0px; top: 29px; flex: none; border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-right-radius: 10px; border-top-left-radius: 10px; background-color: #000000; --border-bottom-width: 1px; --border-top-width: 1px; --border-right-width: 1px; --border-left-width: 1px; --border-style: solid; --border-color: #b9bbbe; }\", '.framer-iuPTk .framer-1ad3dm9, .framer-iuPTk .framer-108tmnr, .framer-iuPTk .framer-16scav8, .framer-iuPTk .framer-hzfn4z, .framer-iuPTk .framer-1lw8h3h { position: absolute; overflow: hidden; width: 52px; height: 16px; left: 10px; top: 61px; flex: none; white-space: pre-wrap; word-wrap: break-word; word-break: break-word; --framer-font-family: \"Gilroy Semibold\", serif; --framer-font-style: normal; --framer-font-weight: 400; --framer-text-color: #b9bbbe; --framer-font-size: 10px; --framer-letter-spacing: 0px; --framer-text-transform: none; --framer-text-decoration: none; --framer-line-height: 1.2em; --framer-text-alignment: center; }', '.framer-iuPTk .framer-ipqnt4, .framer-iuPTk .framer-1i5asx, .framer-iuPTk .framer-1044jcm, .framer-iuPTk .framer-a6cnis, .framer-iuPTk .framer-qr63du { position: absolute; overflow: hidden; width: 52px; height: 16px; left: 8px; top: 31px; flex: none; white-space: pre-wrap; word-wrap: break-word; word-break: break-word; --framer-font-family: \"Gilroy Semibold\", serif; --framer-font-style: normal; --framer-font-weight: 400; --framer-text-color: #b9bbbe; --framer-font-size: 10px; --framer-letter-spacing: 0px; --framer-text-transform: none; --framer-text-decoration: none; --framer-line-height: 1.2em; --framer-text-alignment: center; }', \".framer-iuPTk .framer-zeqyq6, .framer-iuPTk .framer-1i85dw0, .framer-iuPTk .framer-7ay57, .framer-iuPTk .framer-1ye1ta6, .framer-iuPTk .framer-18zua1w { position: absolute; overflow: hidden; will-change: transform; width: 69px; height: 21px; left: 0px; top: 0px; flex: none; border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-right-radius: 10px; border-top-left-radius: 10px; background-color: #000000; --border-bottom-width: 1px; --border-top-width: 1px; --border-right-width: 1px; --border-left-width: 1px; --border-style: solid; --border-color: #b9bbbe; }\", '.framer-iuPTk .framer-146mr5x, .framer-iuPTk .framer-umvdyo, .framer-iuPTk .framer-cl186v, .framer-iuPTk .framer-oyisgm { position: absolute; overflow: hidden; width: 52px; height: 16px; left: 8px; top: 3px; flex: none; white-space: pre-wrap; word-wrap: break-word; word-break: break-word; --framer-font-family: \"Gilroy Semibold\", serif; --framer-font-style: normal; --framer-font-weight: 400; --framer-text-color: #b9bbbe; --framer-font-size: 10px; --framer-letter-spacing: 0px; --framer-text-transform: none; --framer-text-decoration: none; --framer-line-height: 1.2em; --framer-text-alignment: center; }', \".framer-iuPTk .framer-o8tr7q, .framer-iuPTk .framer-1od13i1, .framer-iuPTk .framer-4alob8, .framer-iuPTk .framer-1x6638n, .framer-iuPTk .framer-as252l { position: absolute; overflow: visible; width: 106px; height: 106px; left: 15px; top: 36px; flex: none; }\", \".framer-iuPTk .framer-24ug99, .framer-iuPTk .framer-ayf2r, .framer-iuPTk .framer-kbtvrk, .framer-iuPTk .framer-18tirmy, .framer-iuPTk .framer-179ydqf { position: absolute; overflow: hidden; will-change: transform; width: 106px; height: var(--framer-aspect-ratio-supported, 106px); left: 0px; top: 0px; flex: none; aspect-ratio: 1 / 1; border-bottom-left-radius: 100%; border-bottom-right-radius: 100%; border-top-right-radius: 100%; border-top-left-radius: 100%; background-color: #d9d9d9; --border-bottom-width: 4.05555534362793px; --border-top-width: 4.05555534362793px; --border-right-width: 4.05555534362793px; --border-left-width: 4.05555534362793px; --border-style: solid; --border-color: #000000; }\", \".framer-iuPTk .framer-1f61lei, .framer-iuPTk .framer-15rebqp, .framer-iuPTk .framer-ldwlq1, .framer-iuPTk .framer-58xhz5, .framer-iuPTk .framer-cq6fl0 { position: absolute; overflow: hidden; will-change: transform; width: 90px; height: var(--framer-aspect-ratio-supported, 90px); left: 8px; top: 9px; flex: none; aspect-ratio: 1 / 1; border-bottom-left-radius: 183px; border-bottom-right-radius: 183px; border-top-right-radius: 183px; border-top-left-radius: 183px; }\", \".framer-iuPTk .framer-cs2ewj, .framer-iuPTk .framer-1jiswzo, .framer-iuPTk .framer-12xluaa, .framer-iuPTk .framer-brj3r, .framer-iuPTk .framer-c98urv { position: absolute; overflow: hidden; width: 19px; height: var(--framer-aspect-ratio-supported, 15px); left: 151px; top: 106px; flex: none; aspect-ratio: 1.2827950667064083 / 1; }\", \".framer-iuPTk .framer-16bw5i0 { position: absolute; overflow: visible; width: 417px; height: 222px; left: 125px; top: -145px; flex: none; }\", '.framer-iuPTk .framer-22pxbc { position: absolute; overflow: hidden; width: 193px; height: 26px; bottom: 19px; left: 23px; flex: none; white-space: pre-wrap; word-wrap: break-word; word-break: break-word; --framer-font-family: \"Gilroy Semibold\", serif; --framer-font-style: normal; --framer-font-weight: 400; --framer-text-color: #ffffff; --framer-font-size: 10px; --framer-letter-spacing: 0px; --framer-text-transform: none; --framer-text-decoration: none; --framer-line-height: 1.2em; --framer-text-alignment: left; }', \".framer-iuPTk .framer-1lclahu { position: absolute; overflow: visible; width: 417px; height: 222px; left: -25px; top: 20px; flex: none; }\", '.framer-iuPTk .framer-v64ioc { position: absolute; overflow: hidden; width: 193px; height: 30px; left: 23px; top: 172px; flex: none; white-space: pre-wrap; word-wrap: break-word; word-break: break-word; --framer-font-family: \"Gilroy Semibold\", serif; --framer-font-style: normal; --framer-font-weight: 400; --framer-text-color: #ffffff; --framer-font-size: 10px; --framer-letter-spacing: 0px; --framer-text-transform: none; --framer-text-decoration: none; --framer-line-height: 1.2em; --framer-text-alignment: left; }', '.framer-iuPTk .framer-1bz3i9m { position: absolute; overflow: hidden; width: 53px; height: 15px; left: calc(49.27536231884061% - 53px / 2); top: 4px; flex: none; white-space: pre-wrap; word-wrap: break-word; word-break: break-word; --framer-font-family: \"Gilroy Semibold\", serif; --framer-font-style: normal; --framer-font-weight: 400; --framer-text-color: #b9bbbe; --framer-font-size: 10px; --framer-letter-spacing: 0px; --framer-text-transform: none; --framer-text-decoration: none; --framer-line-height: 1.2em; --framer-text-alignment: center; }', \".framer-iuPTk .framer-syj972 { position: absolute; overflow: visible; width: 417px; height: 222px; left: 125px; top: 190px; flex: none; }\", '.framer-iuPTk .framer-18l5z0v { position: absolute; overflow: hidden; width: 195px; height: 35px; bottom: 12px; left: 23px; flex: none; white-space: pre-wrap; word-wrap: break-word; word-break: break-word; --framer-font-family: \"Gilroy Semibold\", serif; --framer-font-style: normal; --framer-font-weight: 400; --framer-text-color: #ffffff; --framer-font-size: 10px; --framer-letter-spacing: 0px; --framer-text-transform: none; --framer-text-decoration: none; --framer-line-height: 1.2em; --framer-text-alignment: left; }', '.framer-iuPTk .framer-1jui59q { position: absolute; overflow: hidden; width: 209px; height: 33px; bottom: 47px; left: 23px; flex: none; white-space: pre-wrap; word-wrap: break-word; word-break: break-word; --framer-font-family: \"Gilroy Extrabold\", serif; --framer-font-style: normal; --framer-font-weight: 400; --framer-text-color: #c035fb; --framer-font-size: 20px; --framer-letter-spacing: 0px; --framer-text-transform: none; --framer-text-decoration: none; --framer-line-height: 1.2em; --framer-text-alignment: left; }', \".framer-iuPTk .framer-8sfy0z { position: absolute; overflow: visible; width: 69px; height: 80px; left: 333px; top: 130px; flex: none; }\", \".framer-iuPTk .framer-1j069hm { position: absolute; overflow: visible; width: 417px; height: 222px; left: -25px; top: 360px; flex: none; }\", '.framer-iuPTk .framer-1npvhhi { position: absolute; overflow: hidden; width: 264px; height: 27px; left: 23px; top: 179px; flex: none; white-space: pre-wrap; word-wrap: break-word; word-break: break-word; --framer-font-family: \"Gilroy Semibold\", serif; --framer-font-style: normal; --framer-font-weight: 400; --framer-text-color: #ffffff; --framer-font-size: 10px; --framer-letter-spacing: 0px; --framer-text-transform: none; --framer-text-decoration: none; --framer-line-height: 1.2em; --framer-text-alignment: left; }', \".framer-iuPTk .framer-vendjj { position: absolute; width: 842px; height: 510px; left: calc(50.00000000000002% - 842px / 2); top: 3302px; flex: none; }\", \".framer-iuPTk .framer-55yr4y { position: absolute; height: 1278px; right: -656px; left: -537px; top: 3365px; flex: none; transform: rotate(-11deg); }\", \".framer-iuPTk .framer-1tbczx0-container { position: absolute; width: 100%; height: auto; left: 50%; top: 3812px; flex: none; transform: translateX(-50%); }\", \".framer-iuPTk .framer-14lnj5e-container { position: absolute; width: 100%; height: auto; left: 50%; top: 4225px; flex: none; transform: translateX(-50%); }\", \"@media (min-width: 1200px) { .framer-iuPTk .hidden-72rtr7 { display: none !important; } }\", '@media (max-width: 1199px) { .framer-iuPTk .hidden-1pgycd0 { display: none !important; } .framer-iuPTk .framer-72rtr7 { width: 390px; height: 5256px; } .framer-iuPTk .framer-1fkb0gb { width: auto; height: min-content; right: 0px; bottom: auto; left: 0px; top: 834px; flex: none; transform: none; aspect-ratio: unset; } .framer-iuPTk .framer-twu2y4, .framer-iuPTk .framer-14g5k85, .framer-iuPTk .framer-meigf5, .framer-iuPTk .framer-n2oqlt { width: 100%; height: min-content; right: auto; bottom: auto; left: auto; top: auto; flex: none; align-self: auto; aspect-ratio: unset; } .framer-iuPTk .framer-nlr3hy, .framer-iuPTk .framer-1aocenu { width: 476px; height: min-content; right: auto; bottom: auto; left: auto; top: auto; flex: none; align-self: auto; aspect-ratio: unset; order: 1; } .framer-iuPTk .framer-cv2acf { width: auto; height: auto; right: auto; bottom: auto; left: auto; top: auto; flex: none; align-self: auto; white-space: pre; aspect-ratio: unset; order: 0; --extracted-1wi65aa: #00ffa3; --extracted-afnvhb: #00ffa3; --extracted-h2vp2a: #00ffa3; } .framer-iuPTk .framer-zkl489 { width: 430px; height: 137px; right: auto; bottom: auto; left: auto; top: auto; flex: none; transform: none; align-self: auto; white-space: pre-wrap; word-wrap: break-word; word-break: break-word; aspect-ratio: unset; order: 1; --extracted-1k2zljd: #ffffff; } .framer-iuPTk .framer-wujre8 { width: 508px; height: 400px; right: auto; bottom: auto; left: auto; top: auto; flex: none; align-self: auto; aspect-ratio: unset; order: 0; background: linear-gradient(180deg, rgba(242, 161, 161, 0) 0%, rgb(24, 255, 163) 100%); } .framer-iuPTk .framer-17v8myx { width: auto; height: min-content; right: 0px; bottom: auto; left: 0px; top: 148px; flex: none; transform: none; aspect-ratio: unset; } .framer-iuPTk .framer-gbdrko { width: 310px; height: 370px; right: auto; bottom: auto; left: auto; top: auto; flex: none; transform: none; align-self: auto; aspect-ratio: unset; order: 0; } .framer-iuPTk .framer-lrc2dx { --extracted-1wi65aa: #ab4aba; --extracted-afnvhb: #00ffa3; --extracted-h2vp2a: #ab4aba; } .framer-iuPTk .framer-cyoib6 { width: 310px; height: 137px; right: auto; bottom: auto; left: auto; top: auto; flex: none; align-self: auto; white-space: pre-wrap; word-wrap: break-word; word-break: break-word; aspect-ratio: unset; --extracted-1k2zljd: #ffffff; } .framer-iuPTk .framer-1hkxemu-container { width: 100%; height: 1px; right: auto; bottom: auto; left: auto; top: auto; flex: none; align-self: auto; aspect-ratio: unset; scroll-margin-top: unset; opacity: 0; } .framer-iuPTk .framer-1v6cn14 { width: 508px; height: 264px; right: auto; bottom: auto; left: auto; top: auto; flex: none; transform: none; align-self: auto; aspect-ratio: unset; order: 1; } .framer-iuPTk .framer-pheg5j-container { width: auto; height: 103px; right: 167px; bottom: auto; left: 167px; top: 34px; flex: none; transform: rotate(27deg); aspect-ratio: unset; } .framer-iuPTk .framer-19wchqy-container { width: 674px; height: 405px; right: auto; bottom: auto; left: calc(50.00000000000002% - 674px / 2); top: calc(79.21798631476054% - 405px / 2); flex: none; aspect-ratio: unset; } .framer-iuPTk .framer-tn7vw6, .framer-iuPTk .framer-1p26ba8, .framer-iuPTk .framer-1f18v0x { width: 181px; height: 289px; right: auto; bottom: auto; left: calc(47.43589743589746% - 181px / 2); top: calc(74.52435312024356% - 289px / 2); flex: none; aspect-ratio: unset; } .framer-iuPTk .framer-zt33yn { width: 180px; height: 289px; right: auto; bottom: auto; left: calc(50.00000000000002% - 180px / 2); top: calc(74.54337899543381% - 289px / 2); flex: none; aspect-ratio: unset; } .framer-iuPTk .framer-1n7nckk { width: 222px; height: 188px; right: auto; bottom: auto; left: calc(22.051282051282072% - 222px / 2); top: calc(74.5063538611926% - 188px / 2); flex: none; aspect-ratio: unset; } .framer-iuPTk .framer-3tpvkh { width: 321px; height: auto; right: auto; bottom: auto; left: 50%; top: 4128px; flex: none; transform: translateX(-50%); white-space: pre-wrap; word-wrap: break-word; word-break: break-word; aspect-ratio: unset; --extracted-1wi65aa: #0ed0f4; --extracted-1na3mxk: #0ed0f4; } .framer-iuPTk .framer-12vv41o { width: auto; height: min-content; right: 0px; bottom: auto; left: 0px; top: 1767px; flex: none; transform: none; aspect-ratio: unset; } .framer-iuPTk .framer-rh53kf { width: 306px; height: min-content; right: auto; bottom: auto; left: auto; top: auto; flex: none; align-self: auto; aspect-ratio: unset; } .framer-iuPTk .framer-kv4u07 { width: 508px; height: 400px; right: auto; bottom: auto; left: auto; top: auto; flex: none; align-self: auto; aspect-ratio: unset; order: 0; background: linear-gradient(180deg, rgba(255, 116, 119, 0) 0%, #f25151 100%); } .framer-iuPTk .framer-17b89s6, .framer-iuPTk .framer-k4qm0g, .framer-iuPTk .framer-1bsz8zf { --extracted-1w3ko1f: #a3a7a9; } .framer-iuPTk .framer-10hflij, .framer-iuPTk .framer-10wnaan, .framer-iuPTk .framer-1yerqc4 { --extracted-1w3ko1f: #ff7477; } .framer-iuPTk .framer-15xbf57, .framer-iuPTk .framer-1vp5pve, .framer-iuPTk .framer-lz2ppl { --extracted-1w3ko1f: #00ffa3; --extracted-3sq8v0: #0ed0f4; } .framer-iuPTk .framer-klkb22 { --extracted-1w3ko1f: #ffffff; --extracted-5dqwso: #ffffff; } .framer-iuPTk .framer-1tvdqwe { --framer-font-family: \"Gilroy Extrabold\", serif; --framer-font-style: normal; --framer-font-weight: 400; } .framer-iuPTk .framer-1jndf2t { width: 450px; height: min-content; right: auto; bottom: auto; left: auto; top: auto; flex: none; align-self: auto; aspect-ratio: unset; order: 1; } .framer-iuPTk .framer-envxhw { order: 0; --extracted-1wi65aa: #ff7477; --extracted-afnvhb: #ff7477; --extracted-h2vp2a: #ff7477; --extracted-1na3mxk: #ff7477; --extracted-3qfobh: #ff7477; } .framer-iuPTk .framer-1gc2cdt { order: 1; --extracted-1k2zljd: #ffffff; } .framer-iuPTk .framer-bab3qo { width: auto; height: min-content; right: 0px; bottom: auto; left: 0px; top: 2801px; flex: none; transform: none; aspect-ratio: unset; } .framer-iuPTk .framer-9xfltz { order: 0; --extracted-1wi65aa: #6e56cf; --extracted-afnvhb: #6e56cf; --extracted-h2vp2a: #6e56cf; --extracted-s35to5: #00ffa3; --extracted-16a8cg8: #6e56cf; } .framer-iuPTk .framer-1s72wbs { width: 430px; height: 94px; right: auto; bottom: auto; left: auto; top: auto; flex: none; transform: none; align-self: auto; white-space: pre-wrap; word-wrap: break-word; word-break: break-word; aspect-ratio: unset; order: 1; --extracted-1k2zljd: #ffffff; --extracted-cku5m2: #ffffff; --extracted-7519bk: #ffffff; } .framer-iuPTk .framer-1qlckw1 { width: 508px; height: 400px; right: auto; bottom: auto; left: auto; top: auto; flex: none; align-self: auto; aspect-ratio: unset; order: 0; background: linear-gradient(180deg, rgba(178, 138, 242, 0) 0%, #B28AF2 100%); } .framer-iuPTk .framer-vendjj { width: auto; height: 351px; right: -7px; bottom: auto; left: -20px; top: 4497px; flex: none; transform: none; aspect-ratio: unset; } .framer-iuPTk .framer-55yr4y { width: auto; height: 880px; right: -404px; bottom: auto; left: -346px; top: 4525px; flex: none; transform: rotate(-11deg); aspect-ratio: unset; } .framer-iuPTk .framer-1tbczx0-container { width: 100%; height: auto; right: auto; bottom: auto; left: 50%; top: 4864px; flex: none; transform: translateX(-50%); aspect-ratio: unset; } .framer-iuPTk .framer-14lnj5e-container { width: 100%; height: auto; right: auto; bottom: auto; left: 50%; top: 5193px; flex: none; transform: translateX(-50%); aspect-ratio: unset; }}'];\n/**\n* This is a generated Framer component.\n* @framerIntrinsicHeight 4285\n* @framerIntrinsicWidth 1200\n* @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"llZCUywb0\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n* @framerResponsiveScreen\n*/\n\nconst FrameraugiA20Il = withCSS(Component, css);\nexport default FrameraugiA20Il;\nFrameraugiA20Il.displayName = \"Home\";\nFrameraugiA20Il.defaultProps = {\n  width: 1200,\n  height: 4285\n};\naddFonts(FrameraugiA20Il, [{\n  url: new URL(\"https://framerusercontent.com/modules/assets/4sRHot0cnbE3FsiHE379lxWXcV0~TkvzqNBCmD6xSE-8NryB73Gb4YNnPdYdOIiqS9pYK94.otf\").href,\n  family: \"Gilroy Bold\",\n  moduleAsset: {\n    url: \"assets/4sRHot0cnbE3FsiHE379lxWXcV0.otf\",\n    localModuleIdentifier: \"local-module:screen/augiA20Il:default\"\n  }\n}, {\n  url: new URL(\"https://framerusercontent.com/modules/assets/BbqkWZYYKmTWygATTvspa92sC1s~WL3CSQt8VS_usa3fWYNCHQrTyxT9ZyY6-eefl5rU1dU.otf\").href,\n  family: \"Gilroy Extrabold Italic\",\n  moduleAsset: {\n    url: \"assets/BbqkWZYYKmTWygATTvspa92sC1s.otf\",\n    localModuleIdentifier: \"local-module:screen/augiA20Il:default\"\n  }\n}, {\n  url: new URL(\"https://framerusercontent.com/modules/assets/0pT81M3TSg5oHOEn7l6At2k~2iON1VwHCkEoZy4vdqnZ1ODG9ma_EZ2PAZ9qEpsmrRs.otf\").href,\n  family: \"Gilroy Medium\",\n  moduleAsset: {\n    url: \"assets/0pT81M3TSg5oHOEn7l6At2k.otf\",\n    localModuleIdentifier: \"local-module:screen/augiA20Il:default\"\n  }\n}, {\n  url: new URL(\"https://framerusercontent.com/modules/assets/mWl8DrtLoA5AecbZkWGAhnZ5i0E~vJ_xlYziJcrpKuupn7-Q_AspiS95aDJ-QVIS8cx5oas.otf\").href,\n  family: \"Gilroy Semibold\",\n  moduleAsset: {\n    url: \"assets/mWl8DrtLoA5AecbZkWGAhnZ5i0E.otf\",\n    localModuleIdentifier: \"local-module:screen/augiA20Il:default\"\n  }\n}, {\n  url: new URL(\"https://framerusercontent.com/modules/assets/vTHGdy1kchpFDn3V3B0Q3ocuisA~NtyfCDTU3eeiHpm-0bGQhAqxbFW6_WsTyWhMo9PD5Ds.otf\").href,\n  family: \"Gilroy Extrabold\",\n  moduleAsset: {\n    url: \"assets/vTHGdy1kchpFDn3V3B0Q3ocuisA.otf\",\n    localModuleIdentifier: \"local-module:screen/augiA20Il:default\"\n  }\n}, ...NavigationFonts, ...LolFonts, ...PivotCenterFonts, ...FooterSocialFonts, ...LottieFonts, ...Lottie1Fonts]);\nexport const __FramerMetadata__ = {\n  \"exports\": {\n    \"default\": {\n      \"type\": \"reactComponent\",\n      \"name\": \"FrameraugiA20Il\",\n      \"slots\": [],\n      \"annotations\": {\n        \"framerCanvasComponentVariantDetails\": \"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"llZCUywb0\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\n        \"framerIntrinsicWidth\": \"1200\",\n        \"framerIntrinsicHeight\": \"4285\",\n        \"framerContractVersion\": \"1\",\n        \"framerResponsiveScreen\": \"\"\n      }\n    },\n    \"Props\": {\n      \"type\": \"tsType\",\n      \"annotations\": {\n        \"framerContractVersion\": \"1\"\n      }\n    },\n    \"__FramerMetadata__\": {\n      \"type\": \"variable\"\n    }\n  }\n};"],
  "mappings": "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",
  "names": []
}
